[Python-checkins] Fix name of removed `inspect.Signature.from_builtin` method in 3.11.0a2 changelog (#100525)

kumaraditya303 webhook-mailer at python.org
Mon Dec 26 06:34:24 EST 2022


https://github.com/python/cpython/commit/3ccc98fc24b278e0f8195686f3651c7c9fabeb59
commit: 3ccc98fc24b278e0f8195686f3651c7c9fabeb59
branch: main
author: Jakub Kuczys <me at jacken.men>
committer: kumaraditya303 <59607654+kumaraditya303 at users.noreply.github.com>
date: 2022-12-26T17:04:18+05:30
summary:

Fix name of removed `inspect.Signature.from_builtin` method in 3.11.0a2 changelog (#100525)

files:
M Misc/NEWS.d/3.11.0a2.rst

diff --git a/Misc/NEWS.d/3.11.0a2.rst b/Misc/NEWS.d/3.11.0a2.rst
index 8ae8847d846b..225bd61e90d4 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.



More information about the Python-checkins mailing list