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 eric.snow
Recipients eric.snow, larry
Date 2013-03-07.07:51:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362642709.69.0.481380147826.issue17373@psf.upfronthosting.co.za>
In-reply-to
Content
While working on a subclass of inspect.Signature, I realized that inspect.signature is treated as the constructor.  So subclassing isn't so simple.  At first I considered adding an extra parameter to inspect.signature allowing different Signature classes.  Not much later it became clear that all that code should simply be in classmethod.  I've called it Signature.from_callable.  Patch attached.
History
Date User Action Args
2013-03-07 07:51:49eric.snowsetrecipients: + eric.snow, larry
2013-03-07 07:51:49eric.snowsetmessageid: <1362642709.69.0.481380147826.issue17373@psf.upfronthosting.co.za>
2013-03-07 07:51:49eric.snowlinkissue17373 messages
2013-03-07 07:51:49eric.snowcreate