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 yselivanov
Recipients brett.cannon, larry, meador.inge, skrah, tim.peters, yselivanov
Date 2014-01-13.22:08:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389650900.28.0.643270610621.issue20189@psf.upfronthosting.co.za>
In-reply-to
Content
> But this complicates life for inspect.Signature, which needs to not publish the "self" parameter when it's been bound.

That's already supported, isn't it?

>>> str(inspect.signature(F.a))
'(self, a)'
>>> str(inspect.signature(F().a))
'(a)'
History
Date User Action Args
2014-01-13 22:08:20yselivanovsetrecipients: + yselivanov, tim.peters, brett.cannon, larry, skrah, meador.inge
2014-01-13 22:08:20yselivanovsetmessageid: <1389650900.28.0.643270610621.issue20189@psf.upfronthosting.co.za>
2014-01-13 22:08:20yselivanovlinkissue20189 messages
2014-01-13 22:08:20yselivanovcreate