10000 Use the public (since Py3.8) C-API function in the vectorcall code in… · cython/cython@e1d06dc · GitHub
[go: up one dir, main page]

Skip to content

Commit e1d06dc

Browse files
committed
Use the public (since Py3.8) C-API function in the vectorcall code instead of a private function that is now removed in Py3.13.
1 parent 47b4f56 commit e1d06dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cython/Utility/ObjectHandling.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2317,7 +2317,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCallDict(PyObject *func, PyObj
23172317
#endif
23182318

23192319
#if CYTHON_VECTORCALL
2320-
vectorcallfunc f = _PyVectorcall_Function(func);
2320+
vectorcallfunc f = PyVectorcall_Function(func);
23212321
if (f) {
23222322
return f(func, args, (size_t)nargs, kwargs);
23232323
}

0 commit comments

Comments
 (0)
0