diff options
author | Victor Stinner <vstinner@python.org> | 2024-04-08 12:19:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-08 12:19:43 (GMT) |
commit | 9a12f5d1c19dee1f89684be776680aeaf117be5b (patch) | |
tree | fa6a020c817193e4f9ff0fedb48772ce86d23fc4 | |
parent | a7702663e3f7efc81f0b547f1f13ba64c4e5addc (diff) | |
download | cpython-9a12f5d1c19dee1f89684be776680aeaf117be5b.zip cpython-9a12f5d1c19dee1f89684be776680aeaf117be5b.tar.gz cpython-9a12f5d1c19dee1f89684be776680aeaf117be5b.tar.bz2 |
gh-106023: Update What's New in 3.13: _PyObject_FastCall() (#117633)
The function _PyObject_FastCall() was restored.
-rw-r--r-- | Doc/whatsnew/3.13.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index c785d4c..9e40bf0 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -2006,11 +2006,6 @@ Removed (Contributed by Victor Stinner in :gh:`105182`.) -* Remove private ``_PyObject_FastCall()`` function: - use ``PyObject_Vectorcall()`` which is available since Python 3.8 - (:pep:`590`). - (Contributed by Victor Stinner in :gh:`106023`.) - * Remove ``cpython/pytime.h`` header file: it only contained private functions. (Contributed by Victor Stinner in :gh:`106316`.) |