mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Issue #27703: Got rid of unnecessary NULL checks in do_raise() in release mode.
Patch by Xiang Zhang.
This commit is contained in:
parent
2f63faefdf
commit
c019158a4c
1 changed files with 5 additions and 2 deletions
|
@ -4245,6 +4245,9 @@ do_raise(PyObject *exc, PyObject *cause)
|
|||
goto raise_error;
|
||||
}
|
||||
|
||||
assert(type != NULL);
|
||||
assert(value != NULL);
|
||||
|
||||
if (cause) {
|
||||
PyObject *fixed_cause;
|
||||
if (PyExceptionClass_Check(cause)) {
|
||||
|
@ -4271,8 +4274,8 @@ do_raise(PyObject *exc, PyObject *cause)
|
|||
|
||||
PyErr_SetObject(type, value);
|
||||
/* PyErr_SetObject incref's its arguments */
|
||||
Py_XDECREF(value);
|
||||
Py_XDECREF(type);
|
||||
Py_DECREF(value);
|
||||
Py_DECREF(type);
|
||||
return 0;
|
||||
|
||||
raise_error:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue