This repository was archived by the owner on Feb 13, 2025. It is now read-only.
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ PyObject *
431
431
_PyFunction_Vectorcall (PyObject * func , PyObject * const * stack ,
432
432
size_t nargsf , PyObject * kwnames )
433
433
{
434
- STACKLESS_VECTORCALL_GETARG (_PyFunction_FastCallKeywords );
434
+ STACKLESS_VECTORCALL_GETARG (_PyFunction_Vectorcall );
435
435
PyObject * result ;
436
436
PyCodeObject * co = (PyCodeObject * )PyFunction_GET_CODE (func );
437
437
PyObject * globals = PyFunction_GET_GLOBALS (func );
@@ -810,7 +810,7 @@ _PyCFunction_Vectorcall(PyObject *func,
810
810
PyObject * const * args , size_t nargsf ,
811
811
PyObject * kwnames )
812
812
{
813
- STACKLESS_VECTORCALL_GETARG (_PyCFunction_FastCallKeywords );
813
+ STACKLESS_VECTORCALL_GETARG (_PyCFunction_Vectorcall );
814
814
PyObject * result ;
815
815
816
816
assert (func != NULL );
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ _PyMethodDescr_Vectorcall(PyObject *descrobj,
272
272
PyObject * const * args , size_t nargsf ,
273
273
PyObject * kwnames )
274
274
{
275
- STACKLESS_VECTORCALL_GETARG (_PyMethodDescr_FastCallKeywords );
275
+ STACKLESS_VECTORCALL_GETARG (_PyMethodDescr_Vectorcall );
276
276
assert (Py_TYPE (descrobj ) == & PyMethodDescr_Type );
277
277
PyMethodDescrObject * descr = (PyMethodDescrObject * )descrobj ;
278
278
PyObject * self , * result ;
You can’t perform that action at this time.
0 commit comments