diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-10-01 13:24:56 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-10-01 13:24:56 (GMT) |
commit | 1a33b2f35b9195b440b492afa87dcf83ba2ecca4 (patch) | |
tree | e286962b93a945bbf1ef81e351bdfca6b856b90f /Misc | |
parent | 2ff2190b6293966f76633d810dfbe2d232ff5973 (diff) | |
download | cpython-1a33b2f35b9195b440b492afa87dcf83ba2ecca4.zip cpython-1a33b2f35b9195b440b492afa87dcf83ba2ecca4.tar.gz cpython-1a33b2f35b9195b440b492afa87dcf83ba2ecca4.tar.bz2 |
Close #19092: ExitStack now reraises exceptions from __exit__
Report and patch by Hrvoje Nikšić
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 2 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -882,7 +882,7 @@ Samuel Nicolary Jonathan Niehof Gustavo Niemeyer Oscar Nierstrasz -Hrvoje Niksic +Hrvoje Nikšić Gregory Nofi Jesse Noller Bill Noon @@ -71,6 +71,10 @@ Core and Builtins Library ------- +- Issue #19092: contextlib.ExitStack now correctly reraises exceptions + from the __exit__ callbacks of inner context managers (Patch by Hrvoje + Nikšić) + - Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except when necessary. Patch by Oscar Benjamin. |