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 ncoghlan
Recipients SilentGhost, eric.snow, ncoghlan, ryan.petrello, yselivanov
Date 2016-06-23.18:18:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1466705901.74.0.206595858814.issue27172@psf.upfronthosting.co.za>
In-reply-to
Content
OK, as per the above discussion, I've changed the title of this issue to be to undeprecate inspect.getfullargspec().

That change involves two pieces:

- change the documented deprecation of inspect.getfullargspec() to instead be a recommendation to avoid using it in new code, and instead use inspect.signature()
- update the inspect.getargspec() documentation and programmatic deprecation warning to point to both inspect.signature() and inspect.getfullargspec() as potential replacements

That gives folks already using inspect.getfullargspec assurance that it isn't going away anytime soon (if ever), while folks using inspect.getargspec get a lower impact migration path to a more Python 3 friendly version of the callable introspection API.
History
Date User Action Args
2016-06-23 18:18:21ncoghlansetrecipients: + ncoghlan, SilentGhost, eric.snow, yselivanov, ryan.petrello
2016-06-23 18:18:21ncoghlansetmessageid: <1466705901.74.0.206595858814.issue27172@psf.upfronthosting.co.za>
2016-06-23 18:18:21ncoghlanlinkissue27172 messages
2016-06-23 18:18:21ncoghlancreate