summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJeroen Demeyer <J.Demeyer@UGent.be>2019-09-11 11:01:01 (GMT)
committerPetr Viktorin <encukou@gmail.com>2019-09-11 11:01:01 (GMT)
commit7a6873cdb1f496447ac5d57ae457eacbb56b7972 (patch)
treea2a7e401399f18067c5b41f24f86d8deaf7f22c6 /Misc
parent2d8d597bb8f882a7677db5a2739df0e617098634 (diff)
downloadcpython-7a6873cdb1f496447ac5d57ae457eacbb56b7972.zip
cpython-7a6873cdb1f496447ac5d57ae457eacbb56b7972.tar.gz
cpython-7a6873cdb1f496447ac5d57ae457eacbb56b7972.tar.bz2
bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684)
bpo-37151: remove special case for PyCFunction from PyObject_Call Alse, make the undocumented function PyCFunction_Call an alias of PyObject_Call and deprecate it.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2019-07-16-11-02-00.bpo-37151.YKfuNA.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2019-07-16-11-02-00.bpo-37151.YKfuNA.rst b/Misc/NEWS.d/next/C API/2019-07-16-11-02-00.bpo-37151.YKfuNA.rst
new file mode 100644
index 0000000..0841e57
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2019-07-16-11-02-00.bpo-37151.YKfuNA.rst
@@ -0,0 +1 @@
+``PyCFunction_Call`` is now a deprecated alias of :c:func:`PyObject_Call`.