mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
Rename _PyObject_FastCall() to _PyObject_FastCallDict()
Issue #27809: * Rename _PyObject_FastCall() function to _PyObject_FastCallDict() * Add _PyObject_FastCall(), _PyObject_CallNoArg() and _PyObject_CallArg1() macros calling _PyObject_FastCallDict()
This commit is contained in:
parent
c98afb7a26
commit
559bb6a713
12 changed files with 39 additions and 30 deletions
|
|
@ -214,7 +214,7 @@ calliter_iternext(calliterobject *it)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
result = _PyObject_FastCall(it->it_callable, NULL, 0, NULL);
|
||||
result = _PyObject_CallNoArg(it->it_callable);
|
||||
if (result != NULL) {
|
||||
int ok;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue