diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-06-12 02:16:10 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-06-12 02:16:10 +0000 |
commit | 245ce8db46574b0ec3c9eae70aaa9b1b6f9bf97c (patch) | |
tree | 010d031ff05d13c85892427f174a9b6bcd89edeb /Python | |
parent | 909eb12c9529971db352c91327c8d72bd0d16e4b (diff) | |
download | cpython-git-245ce8db46574b0ec3c9eae70aaa9b1b6f9bf97c.tar.gz |
i and j are initialized below when used. No need to do it twice
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 278604d86f..ef484d9b70 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -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; |