diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2019-04-30 01:01:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-30 01:01:14 (GMT) |
commit | d5d2b4546939b98244708e5bb0cfccd55b99d244 (patch) | |
tree | 2a98e93bcad785c97f88154d275a4662afa40f8c /Misc/NEWS.d | |
parent | 81c5a905951aaf46f292eb459c32649c0b74ef61 (diff) | |
download | cpython-d5d2b4546939b98244708e5bb0cfccd55b99d244.zip cpython-d5d2b4546939b98244708e5bb0cfccd55b99d244.tar.gz cpython-d5d2b4546939b98244708e5bb0cfccd55b99d244.tar.bz2 |
bpo-36751: Deprecate getfullargspec and report positional-only args as regular args (GH-13016)
* bpo-36751: Deprecate getfullargspec and report positional-only args as regular args
* Use inspect.signature in testhelpers
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-04-29-23-30-21.bpo-36751.3NCRbm.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-04-29-23-30-21.bpo-36751.3NCRbm.rst b/Misc/NEWS.d/next/Core and Builtins/2019-04-29-23-30-21.bpo-36751.3NCRbm.rst new file mode 100644 index 0000000..5b16aaa --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-04-29-23-30-21.bpo-36751.3NCRbm.rst @@ -0,0 +1,3 @@ +The :func:`~inspect.getfullargspec` function in the :mod:`inspect` module is +deprecated in favor of the :func:`inspect.signature` API. Contributed by +Pablo Galindo. |