summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorJeroen Demeyer <J.Demeyer@UGent.be>2019-06-18 11:05:41 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-06-18 11:05:41 (GMT)
commit59543347d12a7717235f941e7fd363d4df92984a (patch)
treee1f2ba54fe86cf9010bb30d997839073e7dae4bd /Include
parentd8f336fdc10decdd82d3bc81a63aea8be149c0c8 (diff)
downloadcpython-59543347d12a7717235f941e7fd363d4df92984a.zip
cpython-59543347d12a7717235f941e7fd363d4df92984a.tar.gz
cpython-59543347d12a7717235f941e7fd363d4df92984a.tar.bz2
bpo-37151: remove _PyFunction_FastCallDict (GH-13864)
Diffstat (limited to 'Include')
-rw-r--r--Include/funcobject.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h
index e563a74..c6dd67d 100644
--- a/Include/funcobject.h
+++ b/Include/funcobject.h
@@ -60,12 +60,6 @@ PyAPI_FUNC(PyObject *) PyFunction_GetAnnotations(PyObject *);
PyAPI_FUNC(int) PyFunction_SetAnnotations(PyObject *, PyObject *);
#ifndef Py_LIMITED_API
-PyAPI_FUNC(PyObject *) _PyFunction_FastCallDict(
- PyObject *func,
- PyObject *const *args,
- Py_ssize_t nargs,
- PyObject *kwargs);
-
PyAPI_FUNC(PyObject *) _PyFunction_Vectorcall(
PyObject *func,
PyObject *const *stack,