Remove three unneeded variable assignments.

Found using Clang's static analyzer.
This commit is contained in:
Brett Cannon 2010-05-05 20:20:19 +00:00
parent 8a478ced55
commit 0b03f10afb
5 changed files with 79 additions and 89 deletions

View file

@ -2697,7 +2697,6 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
Py_DECREF(*pfunc);
*pfunc = self;
na++;
n++;
} else
Py_INCREF(func);
sp = stack_pointer;