summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 2697235..c13436f 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);