diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-10-12 11:37:56 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-10-12 11:37:56 -0400 |
commit | f208df3618f52c11fb97046951a16706af6fc3e3 (patch) | |
tree | e69d5007c7d18317c1b6f9c9f48f94f3cda23d4e /Python/ceval.c | |
parent | 31a58ff1c311dfee91716387b43f8c793fd7a10b (diff) | |
download | cpython-git-f208df3618f52c11fb97046951a16706af6fc3e3.tar.gz |
move declaration to top of block
Diffstat (limited to 'Python/ceval.c')
-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 2697235332..c13436f471 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); |