summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorJeroen Demeyer <J.Demeyer@UGent.be>2019-06-17 11:41:33 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-06-17 11:41:32 (GMT)
commit0456df4a55ec9a4e8f4425df92bbe63a290f3f2f (patch)
treef6afed3c079b9264b4aa62a37826e7c85316eef8 /Include
parentc034b7824f5a7c50f2946ab3931633200e31d903 (diff)
downloadcpython-0456df4a55ec9a4e8f4425df92bbe63a290f3f2f.zip
cpython-0456df4a55ec9a4e8f4425df92bbe63a290f3f2f.tar.gz
cpython-0456df4a55ec9a4e8f4425df92bbe63a290f3f2f.tar.bz2
bpo-37231: remove _PyObject_FastCall_Prepend (GH-14153)
Diffstat (limited to 'Include')
-rw-r--r--Include/cpython/abstract.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Include/cpython/abstract.h b/Include/cpython/abstract.h
index 7ab2045..d036912 100644
--- a/Include/cpython/abstract.h
+++ b/Include/cpython/abstract.h
@@ -156,12 +156,6 @@ PyAPI_FUNC(PyObject *) _PyObject_Call_Prepend(
PyObject *args,
PyObject *kwargs);
-PyAPI_FUNC(PyObject *) _PyObject_FastCall_Prepend(
- PyObject *callable,
- PyObject *obj,
- PyObject *const *args,
- Py_ssize_t nargs);
-
/* Like PyObject_CallMethod(), but expect a _Py_Identifier*
as the method name. */
PyAPI_FUNC(PyObject *) _PyObject_CallMethodId(PyObject *obj,