summaryrefslogtreecommitdiffstats
path: root/Objects/call.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-07-22 21:44:33 (GMT)
committerGitHub <noreply@github.com>2023-07-22 21:44:33 (GMT)
commit889851ecc355cad3d79f5692a6dbd3ae3127647b (patch)
tree37c72da12a7cff91136642c69c2eec3c274aa5a3 /Objects/call.c
parentc1331ad50891b1727896afe62258bda73a459d40 (diff)
downloadcpython-889851ecc355cad3d79f5692a6dbd3ae3127647b.zip
cpython-889851ecc355cad3d79f5692a6dbd3ae3127647b.tar.gz
cpython-889851ecc355cad3d79f5692a6dbd3ae3127647b.tar.bz2
gh-106320: Remove _PyFunction_Vectorcall() API (#107071)
Move _PyFunction_Vectorcall() API to the internal C API. No longer export the function.
Diffstat (limited to 'Objects/call.c')
-rw-r--r--Objects/call.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/call.c b/Objects/call.c
index 396552d..b1610da 100644
--- a/Objects/call.c
+++ b/Objects/call.c
@@ -2,6 +2,7 @@
#include "pycore_call.h" // _PyObject_CallNoArgsTstate()
#include "pycore_ceval.h" // _Py_EnterRecursiveCallTstate()
#include "pycore_dict.h" // _PyDict_FromItems()
+#include "pycore_function.h" // _PyFunction_Vectorcall() definition
#include "pycore_modsupport.h" // _Py_VaBuildStack()
#include "pycore_object.h" // _PyCFunctionWithKeywords_TrampolineCall()
#include "pycore_pyerrors.h" // _PyErr_Occurred()