diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-06-11 07:18:53 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-06-11 07:18:53 +0300 |
commit | 76d3f14e01ed4096fa39cd99262690fd050efcf0 (patch) | |
tree | 5670845896c2297666de0c1bcfde855a57dbba14 /Modules/_io/textio.c | |
parent | 59895111836a9aa36ccd519c8f44faa5abf87b8e (diff) | |
download | cpython-git-76d3f14e01ed4096fa39cd99262690fd050efcf0.tar.gz |
PyErr_NormalizeException doesn't like being called with an exception set
(issues #21677, #21310).
Diffstat (limited to 'Modules/_io/textio.c')
-rw-r--r-- | Modules/_io/textio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_io/textio.c b/Modules/_io/textio.c index 55392b435f..635093efff 100644 --- a/Modules/_io/textio.c +++ b/Modules/_io/textio.c @@ -2613,14 +2613,14 @@ textiowrapper_close(textio *self, PyObject *args) PyErr_Restore(exc, val, tb); } else { - PyObject *val2; + PyObject *exc2, *val2, *tb2; + PyErr_Fetch(&exc2, &val2, &tb2); PyErr_NormalizeException(&exc, &val, &tb); Py_DECREF(exc); Py_XDECREF(tb); - PyErr_Fetch(&exc, &val2, &tb); - PyErr_NormalizeException(&exc, &val2, &tb); + PyErr_NormalizeException(&exc2, &val2, &tb2); PyException_SetContext(val2, val); - PyErr_Restore(exc, val2, tb); + PyErr_Restore(exc2, val2, tb2); } } return res; |