summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorJeroen Demeyer <J.Demeyer@UGent.be>2019-06-20 15:38:46 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-06-20 15:38:45 (GMT)
commit7e1a9aacff95c68d284f31666fe293fa2db5406d (patch)
tree69fd6366a3bb66c886d4ebcab44aea99c9207920 /Include
parent8713aa6dfb2a17d6de91943ef1eb0ddba58f5b4a (diff)
downloadcpython-7e1a9aacff95c68d284f31666fe293fa2db5406d.zip
cpython-7e1a9aacff95c68d284f31666fe293fa2db5406d.tar.gz
cpython-7e1a9aacff95c68d284f31666fe293fa2db5406d.tar.bz2
bpo-37151: remove _PyCFunction_FastCallDict (GH-14269)
Diffstat (limited to 'Include')
-rw-r--r--Include/methodobject.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h
index e92adde..f4a6682 100644
--- a/Include/methodobject.h
+++ b/Include/methodobject.h
@@ -42,11 +42,6 @@ PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *);
PyAPI_FUNC(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *);
#ifndef Py_LIMITED_API
-PyAPI_FUNC(PyObject *) _PyCFunction_FastCallDict(PyObject *func,
- PyObject *const *args,
- Py_ssize_t nargs,
- PyObject *kwargs);
-
PyAPI_FUNC(PyObject *) _PyCFunction_Vectorcall(PyObject *func,
PyObject *const *stack,
size_t nargsf,