summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Include/cpython/funcobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tools/python3/Include/cpython/funcobject.h')
-rw-r--r--contrib/tools/python3/Include/cpython/funcobject.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/contrib/tools/python3/Include/cpython/funcobject.h b/contrib/tools/python3/Include/cpython/funcobject.h
index 23c8009c38d..5433ba48eef 100644
--- a/contrib/tools/python3/Include/cpython/funcobject.h
+++ b/contrib/tools/python3/Include/cpython/funcobject.h
@@ -81,12 +81,6 @@ PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *);
PyAPI_FUNC(PyObject *) PyFunction_GetAnnotations(PyObject *);
PyAPI_FUNC(int) PyFunction_SetAnnotations(PyObject *, PyObject *);
-PyAPI_FUNC(PyObject *) _PyFunction_Vectorcall(
- PyObject *func,
- PyObject *const *stack,
- size_t nargsf,
- PyObject *kwnames);
-
#define _PyFunction_CAST(func) \
(assert(PyFunction_Check(func)), _Py_CAST(PyFunctionObject*, func))