diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-10-08 19:31:52 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-10-08 19:31:52 (GMT) |
commit | e2bd2a718602bf6d6d607fc9a0b7574a18874847 (patch) | |
tree | 6c5a51a532610fb6717267f2de9661b80405c6e7 /Modules/_io/bufferedio.c | |
parent | 0ddbf4795f40d2d3386dc56ffa264b50a015f6c9 (diff) | |
download | cpython-e2bd2a718602bf6d6d607fc9a0b7574a18874847.zip cpython-e2bd2a718602bf6d6d607fc9a0b7574a18874847.tar.gz cpython-e2bd2a718602bf6d6d607fc9a0b7574a18874847.tar.bz2 |
Issue #21715: Extracted shared complicated code in the _io module to new
_PyErr_ChainExceptions() function.
Diffstat (limited to 'Modules/_io/bufferedio.c')
-rw-r--r-- | Modules/_io/bufferedio.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/Modules/_io/bufferedio.c b/Modules/_io/bufferedio.c index 302db0a..8084aae 100644 --- a/Modules/_io/bufferedio.c +++ b/Modules/_io/bufferedio.c @@ -543,20 +543,8 @@ buffered_close(buffered *self, PyObject *args) } if (exc != NULL) { - if (res != NULL) { - Py_CLEAR(res); - PyErr_Restore(exc, val, tb); - } - else { - PyObject *exc2, *val2, *tb2; - PyErr_Fetch(&exc2, &val2, &tb2); - PyErr_NormalizeException(&exc, &val, &tb); - Py_DECREF(exc); - Py_XDECREF(tb); - PyErr_NormalizeException(&exc2, &val2, &tb2); - PyException_SetContext(val2, val); - PyErr_Restore(exc2, val2, tb2); - } + _PyErr_ChainExceptions(exc, val, tb); + Py_CLEAR(res); } end: |