bpo-37151: remove _PyCFunction_FastCallDict (GH-14269)

This commit is contained in:
Jeroen Demeyer 2019-06-20 17:38:46 +02:00 committed by Inada Naoki
parent 8713aa6dfb
commit 7e1a9aacff
4 changed files with 5 additions and 29 deletions

View file

@ -5018,10 +5018,10 @@ do_call_core(PyThreadState *tstate, PyObject *func, PyObject *callargs, PyObject
return NULL;
}
C_TRACE(result, _PyCFunction_FastCallDict(func,
&_PyTuple_ITEMS(callargs)[1],
nargs - 1,
kwdict));
C_TRACE(result, _PyObject_FastCallDict(func,
&_PyTuple_ITEMS(callargs)[1],
nargs - 1,
kwdict));
Py_DECREF(func);
return result;
}