mirror of https://github.com/python/cpython
nest if for clarity
This commit is contained in:
parent
afcee8b78d
commit
7588b8b355
|
@ -3155,17 +3155,17 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
|
||||||
}
|
}
|
||||||
if (co->co_kwonlyargcount > 0) {
|
if (co->co_kwonlyargcount > 0) {
|
||||||
for (i = co->co_argcount; i < total_args; i++) {
|
for (i = co->co_argcount; i < total_args; i++) {
|
||||||
PyObject *name, *def;
|
PyObject *name;
|
||||||
if (GETLOCAL(i) != NULL)
|
if (GETLOCAL(i) != NULL)
|
||||||
continue;
|
continue;
|
||||||
name = PyTuple_GET_ITEM(co->co_varnames, i);
|
name = PyTuple_GET_ITEM(co->co_varnames, i);
|
||||||
def = NULL;
|
if (kwdefs != NULL) {
|
||||||
if (kwdefs != NULL)
|
PyObject *def = PyDict_GetItem(kwdefs, name);
|
||||||
def = PyDict_GetItem(kwdefs, name);
|
if (def) {
|
||||||
if (def != NULL) {
|
Py_INCREF(def);
|
||||||
Py_INCREF(def);
|
SETLOCAL(i, def);
|
||||||
SETLOCAL(i, def);
|
continue;
|
||||||
continue;
|
}
|
||||||
}
|
}
|
||||||
PyErr_Format(PyExc_TypeError,
|
PyErr_Format(PyExc_TypeError,
|
||||||
"%U() needs keyword-only argument %S",
|
"%U() needs keyword-only argument %S",
|
||||||
|
|
Loading…
Reference in New Issue