summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-05-31 14:00:38 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-05-31 14:00:38 (GMT)
commita5bd2a18ce2bc0910357ff392b373174e0942e3b (patch)
tree971c4f021a10def114d5611f91db3f96aa508e20 /Misc/NEWS
parentc73e8c2830b8ab6983d8abd156de4ac8e22c3edd (diff)
downloadcpython-a5bd2a18ce2bc0910357ff392b373174e0942e3b.zip
cpython-a5bd2a18ce2bc0910357ff392b373174e0942e3b.tar.gz
cpython-a5bd2a18ce2bc0910357ff392b373174e0942e3b.tar.bz2
Close #14963: Use an iterative algorithm in contextlib.ExitStack.__exit__ (Patch by Alon Horev)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS8
1 files changed, 7 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0ae13d4..caeed46 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -7,11 +7,17 @@ What's New in Python 3.3.0 Beta 1?
*Release date: TBD*
+Library
+-------
+
+- Issue #14963: Convert contextlib.ExitStack.__exit__ to use an iterative
+ algorithm (Patch by Alon Horev)
+
Tests
-----
- Issue #14963 (partial): Add test cases for exception handling behaviour
- in contextlib.ContextStack (Initial patch by Alon Horev)
+ in contextlib.ExitStack (Initial patch by Alon Horev)
What's New in Python 3.3.0 Alpha 4?
===================================