summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2013-10-01 13:24:56 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2013-10-01 13:24:56 (GMT)
commit1a33b2f35b9195b440b492afa87dcf83ba2ecca4 (patch)
treee286962b93a945bbf1ef81e351bdfca6b856b90f /Misc
parent2ff2190b6293966f76633d810dfbe2d232ff5973 (diff)
downloadcpython-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/ACKS2
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 1 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 63c126c..400f528 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -882,7 +882,7 @@ Samuel Nicolary
Jonathan Niehof
Gustavo Niemeyer
Oscar Nierstrasz
-Hrvoje Niksic
+Hrvoje Nikšić
Gregory Nofi
Jesse Noller
Bill Noon
diff --git a/Misc/NEWS b/Misc/NEWS
index 7898b9b..30e6111 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.