This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients larry, pitrou, yselivanov
Date 2013-01-29.13:10:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1359465010.37.0.373880220978.issue17071@psf.upfronthosting.co.za>
In-reply-to
Content
>>> def f(a, self): pass
... 
>>> sig = inspect.signature(f)
>>> sig.bind(1, 2)
<inspect.BoundArguments object at 0x7f607ead1e28>
>>> sig.bind(a=1, self=2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: bind() got multiple values for argument 'self'
History
Date User Action Args
2013-01-29 13:10:10pitrousetrecipients: + pitrou, larry, yselivanov
2013-01-29 13:10:10pitrousetmessageid: <1359465010.37.0.373880220978.issue17071@psf.upfronthosting.co.za>
2013-01-29 13:10:10pitroulinkissue17071 messages
2013-01-29 13:10:10pitroucreate