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 remi.lapeyre
Recipients remi.lapeyre
Date 2018-06-29.22:03:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530309783.11.0.56676864532.issue34005@psf.upfronthosting.co.za>
In-reply-to
Content
xmlrpc still makes use of formatargspec which is deprecated since Python 3.5 and raises a deprecation warning:

DeprecationWarning: `formatargspec` is deprecated since Python 3.5. Use `signature` and the `Signature` object directly

The proposed patch replace both uses of inspect.formatargspec by inspect.signature as the documentation suggest in https://docs.python.org/3/library/inspect.html#inspect.formatargspec.
History
Date User Action Args
2018-06-29 22:03:03remi.lapeyresetrecipients: + remi.lapeyre
2018-06-29 22:03:03remi.lapeyresetmessageid: <1530309783.11.0.56676864532.issue34005@psf.upfronthosting.co.za>
2018-06-29 22:03:03remi.lapeyrelinkissue34005 messages
2018-06-29 22:03:03remi.lapeyrecreate