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

Whitespace cleanup.

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