summaryrefslogtreecommitdiffstats
path: root/Objects/call.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-06-30 09:46:43 (GMT)
committerGitHub <noreply@github.com>2023-06-30 09:46:43 (GMT)
commit2efdd2a14e5036ba88f95f68e1f006d2ef08249e (patch)
tree0aec4850bbf44afdc225d333dcfca1d188a9bdad /Objects/call.c
parent0b51463862798d3124f542a076e02ea3759551a4 (diff)
downloadcpython-2efdd2a14e5036ba88f95f68e1f006d2ef08249e.zip
cpython-2efdd2a14e5036ba88f95f68e1f006d2ef08249e.tar.gz
cpython-2efdd2a14e5036ba88f95f68e1f006d2ef08249e.tar.bz2
gh-106023: Remove _PyObject_FastCall() function (#106265)
Diffstat (limited to 'Objects/call.c')
-rw-r--r--Objects/call.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Objects/call.c b/Objects/call.c
index e745fc4..16c41ff 100644
--- a/Objects/call.c
+++ b/Objects/call.c
@@ -328,14 +328,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)
{