Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f208df3

Browse files
committed
move declaration to top of block
1 parent 31a58ff commit f208df3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1402,8 +1402,8 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
14021402

14031403
TARGET(DUP_TOP_TWO) {
14041404
PyObject *top = TOP();
1405-
Py_INCREF(top);
14061405
PyObject *second = SECOND();
1406+
Py_INCREF(top);
14071407
Py_INCREF(second);
14081408
STACKADJ(2);
14091409
SET_TOP(top);

0 commit comments

Comments
 (0)