summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2022-01-02 16:51:56 (GMT)
committerGitHub <noreply@github.com>2022-01-02 16:51:56 (GMT)
commit7a8796dc67d691e43eed69969e7706fefe0f16e9 (patch)
treed1a9a1b4bf8b91a68995baf39e012f579e8d27a2
parenta82baed0e9e61c0d8dc5c12fc08de7fc172c1a38 (diff)
downloadcpython-7a8796dc67d691e43eed69969e7706fefe0f16e9.zip
cpython-7a8796dc67d691e43eed69969e7706fefe0f16e9.tar.gz
cpython-7a8796dc67d691e43eed69969e7706fefe0f16e9.tar.bz2
bpo-45903: Fix typo in What's New: Signature.from_builtin is removed (GH-29813)
-rw-r--r--Doc/whatsnew/3.11.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 5389ce8..faa63a9 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -528,7 +528,7 @@ Removed
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.