[issue34005] Replace inspect.formatargspec by inspect.signature in xmlrpc module

2018-06-29 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: Indeed, it is the exact same patch. Sorry about the duplicate. -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue34005] Replace inspect.formatargspec by inspect.signature in xmlrpc module

2018-06-29 Thread Zackery Spytz
Zackery Spytz added the comment: This is a duplicate of #33911 (which already has a PR). -- nosy: +ZackerySpytz ___ Python tracker ___

[issue34005] Replace inspect.formatargspec by inspect.signature in xmlrpc module

2018-06-29 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- components: +Library (Lib), XML versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue34005] Replace inspect.formatargspec by inspect.signature in xmlrpc module

2018-06-29 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- keywords: +patch pull_requests: +7624 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue34005] Replace inspect.formatargspec by inspect.signature in xmlrpc module

2018-06-29 Thread Rémi Lapeyre
New submission from Rémi Lapeyre : 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