summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJakub Kuczys <me@jacken.men>2022-12-26 11:34:18 (GMT)
committerGitHub <noreply@github.com>2022-12-26 11:34:18 (GMT)
commit3ccc98fc24b278e0f8195686f3651c7c9fabeb59 (patch)
tree6d269032a33717b246303cabf91cef33930b9c92 /Misc
parentad3c99e521151680afc65d3f8a7d2167ec1969ad (diff)
downloadcpython-3ccc98fc24b278e0f8195686f3651c7c9fabeb59.zip
cpython-3ccc98fc24b278e0f8195686f3651c7c9fabeb59.tar.gz
cpython-3ccc98fc24b278e0f8195686f3651c7c9fabeb59.tar.bz2
Fix name of removed `inspect.Signature.from_builtin` method in 3.11.0a2 changelog (#100525)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/3.11.0a2.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.11.0a2.rst b/Misc/NEWS.d/3.11.0a2.rst
index 8ae8847..225bd61 100644
--- a/Misc/NEWS.d/3.11.0a2.rst
+++ b/Misc/NEWS.d/3.11.0a2.rst
@@ -618,7 +618,7 @@ Removed from the :mod:`inspect` module:
use the :func:`inspect.signature` function and :class:`Signature` object
directly.
-* the undocumented ``Signature.from_callable`` and ``Signature.from_function``
+* the undocumented ``Signature.from_builtin`` and ``Signature.from_function``
functions, deprecated since Python 3.5; use the
:meth:`Signature.from_callable() <inspect.Signature.from_callable>` method
instead.