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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ee5183852e7ebd23eae66a38585b4fd0a6f956e;p=python Remove an unneeded variable increment. Found using Clang's static analyzer. --- diff --git a/Python/ceval.c b/Python/ceval.c index b06de50d22..2b64caea33 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;