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, Tim.Graham, eric.snow, larry, ncoghlan, ned.deily, python-dev, r.david.murray, ryan.petrello, serhiy.storchaka, yselivanov
Date 2017-10-10.06:29:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507616988.4.0.213398074469.issue27172@psf.upfronthosting.co.za>
In-reply-to
Content
Note: the minor incompatibility that required getfullargspec() to be a separate API in the first place is the fact that it returns a 7 element named tuple instead of a 4 element one.

This means that hybrid 2/3 code needs to consistently use name based item access rather than tuple unpacking, but other than that, all code related to the first four fields can be identical across versions. (Code related to handling the extra three fields will naturally only be needed on 3.x)
History
Date User Action Args
2017-10-10 06:29:48ncoghlansetrecipients: + ncoghlan, larry, ned.deily, r.david.murray, SilentGhost, python-dev, eric.snow, serhiy.storchaka, yselivanov, Tim.Graham, ryan.petrello
2017-10-10 06:29:48ncoghlansetmessageid: <1507616988.4.0.213398074469.issue27172@psf.upfronthosting.co.za>
2017-10-10 06:29:48ncoghlanlinkissue27172 messages
2017-10-10 06:29:48ncoghlancreate