From: Brett Cannon Date: Wed, 5 May 2010 20:27:49 +0000 (+0000) Subject: Remove an unneeded variable increment. X-Git-Tag: v2.7b2~65 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2ee5183852e7ebd23eae66a38585b4fd0a6f956e;p=thirdparty%2FPython%2Fcpython.git Remove an unneeded variable increment. Found using Clang's static analyzer. --- diff --git a/Python/ceval.c b/Python/ceval.c index b06de50d22c0..2b64caea3305 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2697,7 +2697,6 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) Py_DECREF(*pfunc); *pfunc = self; na++; - n++; } else Py_INCREF(func); sp = stack_pointer;