mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00
move declaration to top of block
This commit is contained in:
parent
31a58ff1c3
commit
f208df3618
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue