Whitespace cleanup.

This commit is contained in:
Thomas Wouters 2007-09-19 21:56:32 +00:00
parent ce272b6f8a
commit 7ce29ca41c

View file

@ -2986,7 +2986,8 @@ do_raise(PyObject *exc, PyObject *cause)
}
else {
PyErr_SetString(PyExc_TypeError,
"exception causes must derive from BaseException");
"exception causes must derive from "
"BaseException");
goto raise_error;
}
PyException_SetCause(value, fixed_cause);
@ -3675,7 +3676,7 @@ do_call(PyObject *func, PyObject ***pp_stack, int na, int nk)
PCALL(PCALL_OTHER);
#endif
result = PyObject_Call(func, callargs, kwdict);
call_fail:
call_fail:
Py_XDECREF(callargs);
Py_XDECREF(kwdict);
return result;