[3.8] bpo-36974: separate vectorcall functions for each calling convention (GH-13781) (#14782)

This commit is contained in:
Jeroen Demeyer 2019-07-23 12:39:51 +02:00 committed by Łukasz Langa
parent 5dab5e7d24
commit bf8e82f976
10 changed files with 388 additions and 117 deletions

View file

@ -46,11 +46,6 @@ 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,
PyObject *kwnames);
#endif
struct PyMethodDef {