bpo-37151: remove _PyFunction_FastCallDict (GH-13864)

This commit is contained in:
Jeroen Demeyer 2019-06-18 13:05:41 +02:00 committed by Inada Naoki
parent d8f336fdc1
commit 59543347d1
3 changed files with 1 additions and 106 deletions

View file

@ -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,