summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library/2021-09-15-10-21-10.bpo-45320.4qaf5x.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/Library/2021-09-15-10-21-10.bpo-45320.4qaf5x.rst')
-rw-r--r--Misc/NEWS.d/next/Library/2021-09-15-10-21-10.bpo-45320.4qaf5x.rst15
1 files changed, 0 insertions, 15 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-09-15-10-21-10.bpo-45320.4qaf5x.rst b/Misc/NEWS.d/next/Library/2021-09-15-10-21-10.bpo-45320.4qaf5x.rst
deleted file mode 100644
index 1f2236b..0000000
--- a/Misc/NEWS.d/next/Library/2021-09-15-10-21-10.bpo-45320.4qaf5x.rst
+++ /dev/null
@@ -1,15 +0,0 @@
-Removed from the :mod:`inspect` module:
-
-* the ``getargspec`` function, deprecated since Python 3.0;
- use :func:`inspect.signature` or :func:`inspect.getfullargspec` instead.
-
-* the ``formatargspec`` function, deprecated since Python 3.5;
- use the :func:`inspect.signature` function and :class:`Signature` object
- directly.
-
-* the undocumented ``Signature.from_callable`` and ``Signature.from_function``
- functions, deprecated since Python 3.5; use the
- :meth:`Signature.from_callable() <inspect.Signature.from_callable>` method
- instead.
-
-Patch by Hugo van Kemenade.