mirror of
https://github.com/python/cpython.git
synced 2025-10-09 08:31:26 +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
|
@ -36,7 +36,7 @@ PyFunction_NewWithQualName(PyObject *code, PyObject *globals, PyObject *qualname
|
|||
op->func_defaults = NULL; /* No default arguments */
|
||||
op->func_kwdefaults = NULL; /* No keyword only defaults */
|
||||
op->func_closure = NULL;
|
||||
op->vectorcall = _PyFunction_FastCallKeywords;
|
||||
op->vectorcall = _PyFunction_Vectorcall;
|
||||
|
||||
consts = ((PyCodeObject *)code)->co_consts;
|
||||
if (PyTuple_Size(consts) >= 1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue