diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-10-12 15:37:56 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-10-12 15:37:56 (GMT) |
commit | f208df3618f52c11fb97046951a16706af6fc3e3 (patch) | |
tree | e69d5007c7d18317c1b6f9c9f48f94f3cda23d4e /Python | |
parent | 31a58ff1c311dfee91716387b43f8c793fd7a10b (diff) | |
download | cpython-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.c | 2 |
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); |