diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-05-31 14:00:38 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-05-31 14:00:38 (GMT) |
commit | a5bd2a18ce2bc0910357ff392b373174e0942e3b (patch) | |
tree | 971c4f021a10def114d5611f91db3f96aa508e20 /Misc | |
parent | c73e8c2830b8ab6983d8abd156de4ac8e22c3edd (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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? =================================== |