mirror of
https://github.com/python/cpython.git
synced 2025-12-09 10:37:17 +00:00
gh-106023: Remove _PyObject_FastCall() function (#106265)
This commit is contained in:
parent
0b51463862
commit
2efdd2a14e
7 changed files with 13 additions and 51 deletions
|
|
@ -327,14 +327,6 @@ PyObject_Vectorcall(PyObject *callable, PyObject *const *args,
|
|||
}
|
||||
|
||||
|
||||
PyObject *
|
||||
_PyObject_FastCall(PyObject *func, PyObject *const *args, Py_ssize_t nargs)
|
||||
{
|
||||
PyThreadState *tstate = _PyThreadState_GET();
|
||||
return _PyObject_FastCallTstate(tstate, func, args, nargs);
|
||||
}
|
||||
|
||||
|
||||
PyObject *
|
||||
_PyObject_Call(PyThreadState *tstate, PyObject *callable,
|
||||
PyObject *args, PyObject *kwargs)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue