summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-05-16 20:08:15 (GMT)
committerGitHub <noreply@github.com>2019-05-16 20:08:15 (GMT)
commitaee19f54f6fe45f6b3c906987941e5a8af4468e9 (patch)
treeda9a3967721268606f7199a0effd5cc28ff96c91 /Doc
parent54b43bb3bb88339b63182b3515cda3efa530ed62 (diff)
downloadcpython-aee19f54f6fe45f6b3c906987941e5a8af4468e9.zip
cpython-aee19f54f6fe45f6b3c906987941e5a8af4468e9.tar.gz
cpython-aee19f54f6fe45f6b3c906987941e5a8af4468e9.tar.bz2
bpo-36751: Undeprecate getfullargspec (GH-13245)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/inspect.rst5
-rw-r--r--Doc/whatsnew/3.8.rst4
2 files changed, 0 insertions, 9 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
index d12f122..81824dd 100644
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -948,11 +948,6 @@ Classes and functions
APIs. This function is retained primarily for use in code that needs to
maintain compatibility with the Python 2 ``inspect`` module API.
- .. deprecated:: 3.8
- Use :func:`signature` and
- :ref:`Signature Object <inspect-signature-object>`, which provide a
- better introspecting API for callables.
-
.. versionchanged:: 3.4
This function is now based on :func:`signature`, but still ignores
``__wrapped__`` attributes and includes the already bound first
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index c135183..d47993b 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -780,10 +780,6 @@ Deprecated
<positional-only_parameter>`.
(Contributed by Serhiy Storchaka in :issue:`36492`.)
-* The function :func:`~inspect.getfullargspec` in the :mod:`inspect`
- module is deprecated in favor of the :func:`inspect.signature`
- API. (Contributed by Pablo Galindo in :issue:`36751`.)
-
API and Feature Removals
========================