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 samwyse
Recipients samwyse
Date 2017-03-29.15:41:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1490802065.05.0.49346265762.issue29940@psf.upfronthosting.co.za>
In-reply-to
Content
The help(obj) function uses the type of obj to create its result.  This is less than helpful when requesting help on a wrapped object.  Since 3.5, inspect.signature() and inspect.from_callable() have a follow_wrapped option to get around similar issues.  Adding the option to help() would prevent surprising behavior while still allowing current behavior to be used when needed.  See http://stackoverflow.com/a/17705456/603136 for more.
History
Date User Action Args
2017-03-29 15:41:05samwysesetrecipients: + samwyse
2017-03-29 15:41:05samwysesetmessageid: <1490802065.05.0.49346265762.issue29940@psf.upfronthosting.co.za>
2017-03-29 15:41:04samwyselinkissue29940 messages
2017-03-29 15:41:04samwysecreate