summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-31 10:23:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-31 10:23:01 (GMT)
commit260cd320a1087fa040743fd46dd0d2c412a0ba17 (patch)
tree8e659c6cdce73d40c7bc31434cc69c1eb5345327 /Misc/NEWS
parent08448a1f4d57e4dd35936b9e43259438d3246c06 (diff)
parent13a1c6022b72cab0ff45a4e7b71305ed25ad9490 (diff)
downloadcpython-260cd320a1087fa040743fd46dd0d2c412a0ba17.zip
cpython-260cd320a1087fa040743fd46dd0d2c412a0ba17.tar.gz
cpython-260cd320a1087fa040743fd46dd0d2c412a0ba17.tar.bz2
Merge heads
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1588a22..b725c5d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.