diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-31 10:23:01 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-31 10:23:01 (GMT) |
commit | 260cd320a1087fa040743fd46dd0d2c412a0ba17 (patch) | |
tree | 8e659c6cdce73d40c7bc31434cc69c1eb5345327 /Misc/NEWS | |
parent | 08448a1f4d57e4dd35936b9e43259438d3246c06 (diff) | |
parent | 13a1c6022b72cab0ff45a4e7b71305ed25ad9490 (diff) | |
download | cpython-260cd320a1087fa040743fd46dd0d2c412a0ba17.zip cpython-260cd320a1087fa040743fd46dd0d2c412a0ba17.tar.gz cpython-260cd320a1087fa040743fd46dd0d2c412a0ba17.tar.bz2 |
Merge heads
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -229,6 +229,12 @@ Library - Issue #23326: Removed __ne__ implementations. Since fixing default __ne__ implementation in issue #21408 they are redundant. +- Issue #23353: Fix the exception handling of generators in + PyEval_EvalFrameEx(). At entry, save or swap the exception state even if + PyEval_EvalFrameEx() is called with throwflag=0. At exit, the exception state + is now always restored or swapped, not only if why is WHY_YIELD or + WHY_RETURN. Patch co-written with Antoine Pitrou. + - Issue #14099: Restored support of writing ZIP files to tellable but non-seekable streams. |