summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-11-17 22:30:42 (GMT)
committerGitHub <noreply@github.com>2023-11-17 22:30:42 (GMT)
commitcb5048ea0e4dd14be333ac4f0357a64b2a4fb89c (patch)
tree8b424ac1a37db26e8fd6e10f80bda9f69d032acb /Doc
parent7405745817d19e13585dd4f0f9b8338ba5b32418 (diff)
downloadcpython-cb5048ea0e4dd14be333ac4f0357a64b2a4fb89c.zip
cpython-cb5048ea0e4dd14be333ac4f0357a64b2a4fb89c.tar.gz
cpython-cb5048ea0e4dd14be333ac4f0357a64b2a4fb89c.tar.bz2
gh-112026: Update What's New: _PyObject_Vectorcall() was restored (#112171)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.13.rst14
1 files changed, 0 insertions, 14 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index b64cfc5..4d05bce 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -1399,20 +1399,6 @@ Removed
(Contributed by Victor Stinner in :gh:`105182`.)
-* Remove the old aliases to functions calling functions which were kept for
- backward compatibility with Python 3.8 provisional API:
-
- * ``_PyObject_CallMethodNoArgs()``: use ``PyObject_CallMethodNoArgs()``
- * ``_PyObject_CallMethodOneArg()``: use ``PyObject_CallMethodOneArg()``
- * ``_PyObject_CallOneArg()``: use ``PyObject_CallOneArg()``
- * ``_PyObject_FastCallDict()``: use ``PyObject_VectorcallDict()``
- * ``_PyObject_Vectorcall()``: use ``PyObject_Vectorcall()``
- * ``_PyObject_VectorcallMethod()``: use ``PyObject_VectorcallMethod()``
- * ``_PyVectorcall_Function()``: use ``PyVectorcall_Function()``
-
- Just remove the underscore prefix to update your code.
- (Contributed by Victor Stinner in :gh:`106084`.)
-
* Remove private ``_PyObject_FastCall()`` function:
use ``PyObject_Vectorcall()`` which is available since Python 3.8
(:pep:`590`).