Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 02fbb59

Browse files
author
Anselm Kruis
committed
Stackless issue #254: bpo-36974: rename _FastCallKeywords -> _Vectorcall
Adapt Stackless to upstream commit 37788bc.
1 parent a3438ac commit 02fbb59

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Objects/call.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ PyObject *
431431
_PyFunction_Vectorcall(PyObject *func, PyObject* const* stack,
432432
size_t nargsf, PyObject *kwnames)
433433
{
434-
STACKLESS_VECTORCALL_GETARG(_PyFunction_FastCallKeywords);
434+
STACKLESS_VECTORCALL_GETARG(_PyFunction_Vectorcall);
435435
PyObject *result;
436436
PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func);
437437
PyObject *globals = PyFunction_GET_GLOBALS(func);
@@ -810,7 +810,7 @@ _PyCFunction_Vectorcall(PyObject *func,
810810
PyObject *const *args, size_t nargsf,
811811
PyObject *kwnames)
812812
{
813-
STACKLESS_VECTORCALL_GETARG(_PyCFunction_FastCallKeywords);
813+
STACKLESS_VECTORCALL_GETARG(_PyCFunction_Vectorcall);
814814
PyObject *result;
815815

816816
assert(func != NULL);

Objects/descrobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ _PyMethodDescr_Vectorcall(PyObject *descrobj,
272272
PyObject *const *args, size_t nargsf,
273273
PyObject *kwnames)
274274
{
275-
STACKLESS_VECTORCALL_GETARG(_PyMethodDescr_FastCallKeywords);
275+
STACKLESS_VECTORCALL_GETARG(_PyMethodDescr_Vectorcall);
276276
assert(Py_TYPE(descrobj) == &PyMethodDescr_Type);
277277
PyMethodDescrObject *descr = (PyMethodDescrObject *)descrobj;
278278
PyObject *self, *result;

0 commit comments

Comments
 (0)