Kaydet (Commit) f208df36 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

move declaration to top of block

üst 31a58ff1
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment