diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-31 11:08:40 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-31 11:08:40 +0100 |
commit | 13a1c6022b72cab0ff45a4e7b71305ed25ad9490 (patch) | |
tree | 158ef1b9eeefc9010a260eb7ce3270a0ef471966 /Misc | |
parent | 57f7db312210fcdc5db00f8e6a67f682ced342e3 (diff) | |
parent | 26f7b8acdc010801a8fe877376488e0b69a89dad (diff) | |
download | cpython-git-13a1c6022b72cab0ff45a4e7b71305ed25ad9490.tar.gz |
Merge 3.4 (generator)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -226,6 +226,12 @@ Core and Builtins Library ------- +- 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. |