From: Hugo van Kemenade Date: Sun, 2 Jan 2022 16:51:56 +0000 (+0200) Subject: bpo-45903: Fix typo in What's New: Signature.from_builtin is removed (GH-29813) X-Git-Tag: v3.11.0a4~111 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7a8796dc67d691e43eed69969e7706fefe0f16e9;p=thirdparty%2FPython%2Fcpython.git bpo-45903: Fix typo in What's New: Signature.from_builtin is removed (GH-29813) --- diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 5389ce8b258c..faa63a93895a 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() ` method instead.