mirror of
https://github.com/python/cpython.git
synced 2025-10-15 19:29:46 +00:00
Whitespace cleanup.
This commit is contained in:
parent
ce272b6f8a
commit
7ce29ca41c
1 changed files with 39 additions and 38 deletions
|
@ -2986,7 +2986,8 @@ do_raise(PyObject *exc, PyObject *cause)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
PyErr_SetString(PyExc_TypeError,
|
PyErr_SetString(PyExc_TypeError,
|
||||||
"exception causes must derive from BaseException");
|
"exception causes must derive from "
|
||||||
|
"BaseException");
|
||||||
goto raise_error;
|
goto raise_error;
|
||||||
}
|
}
|
||||||
PyException_SetCause(value, fixed_cause);
|
PyException_SetCause(value, fixed_cause);
|
||||||
|
@ -3675,7 +3676,7 @@ do_call(PyObject *func, PyObject ***pp_stack, int na, int nk)
|
||||||
PCALL(PCALL_OTHER);
|
PCALL(PCALL_OTHER);
|
||||||
#endif
|
#endif
|
||||||
result = PyObject_Call(func, callargs, kwdict);
|
result = PyObject_Call(func, callargs, kwdict);
|
||||||
call_fail:
|
call_fail:
|
||||||
Py_XDECREF(callargs);
|
Py_XDECREF(callargs);
|
||||||
Py_XDECREF(kwdict);
|
Py_XDECREF(kwdict);
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue