summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-31 11:08:40 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-31 11:08:40 +0100
commit13a1c6022b72cab0ff45a4e7b71305ed25ad9490 (patch)
tree158ef1b9eeefc9010a260eb7ce3270a0ef471966 /Misc
parent57f7db312210fcdc5db00f8e6a67f682ced342e3 (diff)
parent26f7b8acdc010801a8fe877376488e0b69a89dad (diff)
downloadcpython-git-13a1c6022b72cab0ff45a4e7b71305ed25ad9490.tar.gz
Merge 3.4 (generator)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 01af9d6f6f..495fd37e44 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.