summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-10-12 15:37:56 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-10-12 15:37:56 (GMT)
commitf208df3618f52c11fb97046951a16706af6fc3e3 (patch)
treee69d5007c7d18317c1b6f9c9f48f94f3cda23d4e /Python
parent31a58ff1c311dfee91716387b43f8c793fd7a10b (diff)
downloadcpython-f208df3618f52c11fb97046951a16706af6fc3e3.zip
cpython-f208df3618f52c11fb97046951a16706af6fc3e3.tar.gz
cpython-f208df3618f52c11fb97046951a16706af6fc3e3.tar.bz2
move declaration to top of block
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);