From: Benjamin Peterson Date: Fri, 12 Oct 2012 15:37:56 +0000 (-0400) Subject: move declaration to top of block X-Git-Tag: v3.4.0a1~2268 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f208df3618f52c11fb97046951a16706af6fc3e3;p=python move declaration to top of block --- diff --git a/Python/ceval.c b/Python/ceval.c index 2697235332..c13436f471 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1402,8 +1402,8 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) TARGET(DUP_TOP_TWO) { PyObject *top = TOP(); - Py_INCREF(top); PyObject *second = SECOND(); + Py_INCREF(top); Py_INCREF(second); STACKADJ(2); SET_TOP(top);