Skip to content

Instantly share code, notes, and snippets.

@exarkun
Created January 4, 2017 21:34
Show Gist options
  • Save exarkun/0bd78b7b9eb5bd3b19030aae2319652a to your computer and use it in GitHub Desktop.
Save exarkun/0bd78b7b9eb5bd3b19030aae2319652a to your computer and use it in GitHub Desktop.
(Pdb) p self.query_factory
<function query at 0x7ff3107a9c08>
(Pdb) p self.query_factory(1, 2)
*** TypeError: TypeError('query() takes exactly 0 arguments (2 given)',)
(Pdb) p self.query_factory()
*** TypeError: TypeError('__init__() takes at least 3 arguments (1 given)',)
(Pdb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment