diff options
author | Raymond Hettinger <python@rcn.com> | 2009-11-01 20:55:33 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-11-01 20:55:33 (GMT) |
commit | fc438518a0a3b471a187f0473b62a0dcaefd539e (patch) | |
tree | 45467853125d73333ccd7752ab80010dc00aa229 /Misc | |
parent | cafc22f0b82c93f8e905bb78f0b36c6bcdbd3a60 (diff) | |
download | cpython-fc438518a0a3b471a187f0473b62a0dcaefd539e.zip cpython-fc438518a0a3b471a187f0473b62a0dcaefd539e.tar.gz cpython-fc438518a0a3b471a187f0473b62a0dcaefd539e.tar.bz2 |
Fix exception handling in itertools.izip_longest().
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1? Core and Builtins ----------------- +- Issue #7244: itertools.izip_longest() no longer ignores exceptions + raised during the formation of an output tuple. + - Issue #3297: On wide unicode builds, do not split unicode characters into surrogates. |