Kaydet (Commit) ae406c60 authored tarafından Thomas Wouters's avatar Thomas Wouters

Whitespace cleanup.

üst b3e6e8c8
......@@ -2602,7 +2602,7 @@ fast_yield:
}
/* pop frame */
exit_eval_frame:
exit_eval_frame:
Py_LeaveRecursiveCall();
tstate->frame = f->f_back;
......@@ -2839,7 +2839,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
retval = PyEval_EvalFrameEx(f,0);
fail: /* Jump here from prelude on failure */
fail: /* Jump here from prelude on failure */
/* decref'ing the frame can cause __del__ methods to get invoked,
which can call back into Python. While we're done with the
......@@ -3861,7 +3861,7 @@ ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
PCALL(PCALL_OTHER);
#endif
result = PyObject_Call(func, callargs, kwdict);
ext_call_fail:
ext_call_fail:
Py_XDECREF(callargs);
Py_XDECREF(kwdict);
Py_XDECREF(stararg);
......
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