i and j are initialized below when used. No need to do it twice

This commit is contained in:
Neal Norwitz 2006-06-12 02:16:10 +00:00
parent 909eb12c95
commit 245ce8db46
1 changed files with 1 additions and 1 deletions

View File

@ -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;