i and j are initialized below when used. No need to do it twice
This commit is contained in:
parent
909eb12c95
commit
245ce8db46
|
@ -2766,7 +2766,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
|
||||||
/* Allocate and initialize storage for cell vars, and copy free
|
/* Allocate and initialize storage for cell vars, and copy free
|
||||||
vars into frame. This isn't too efficient right now. */
|
vars into frame. This isn't too efficient right now. */
|
||||||
if (PyTuple_GET_SIZE(co->co_cellvars)) {
|
if (PyTuple_GET_SIZE(co->co_cellvars)) {
|
||||||
int i = 0, j = 0, nargs, found;
|
int i, j, nargs, found;
|
||||||
char *cellname, *argname;
|
char *cellname, *argname;
|
||||||
PyObject *c;
|
PyObject *c;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue