mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
This commit is contained in:
parent
6d0b7470a4
commit
37788bc23f
9 changed files with 19 additions and 19 deletions
|
@ -52,7 +52,7 @@ PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module)
|
|||
op->vectorcall = NULL;
|
||||
}
|
||||
else {
|
||||
op->vectorcall = &_PyCFunction_FastCallKeywords;
|
||||
op->vectorcall = _PyCFunction_Vectorcall;
|
||||
}
|
||||
_PyObject_GC_TRACK(op);
|
||||
return (PyObject *)op;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue