mirror of
https://github.com/python/cpython.git
synced 2025-07-27 13:14:41 +00:00
i and j are initialized below when used. No need to do it twice
This commit is contained in:
parent
909eb12c95
commit
245ce8db46
1 changed files with 1 additions and 1 deletions
|
@ -2766,7 +2766,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
|
|||
/* Allocate and initialize storage for cell vars, and copy free
|
||||
vars into frame. This isn't too efficient right now. */
|
||||
if (PyTuple_GET_SIZE(co->co_cellvars)) {
|
||||
int i = 0, j = 0, nargs, found;
|
||||
int i, j, nargs, found;
|
||||
char *cellname, *argname;
|
||||
PyObject *c;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue