From: Neal Norwitz Date: Mon, 12 Jun 2006 02:16:10 +0000 (+0000) Subject: i and j are initialized below when used. No need to do it twice X-Git-Tag: v2.5b1~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=245ce8db46574b0ec3c9eae70aaa9b1b6f9bf97c;p=python i and j are initialized below when used. No need to do it twice --- 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;