summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-04-26 16:48:16 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-04-26 16:48:16 (GMT)
commit7503509f196044e60d7506115a5919ad3eff6c58 (patch)
tree2606ccd9d3e4c7fc987651f3403de2f461076896 /Misc/NEWS
parenta7edf1e57cfae67e5734457be812cdd55a32a062 (diff)
parent7403e91630456ae2a495ac7621c2152d9a270400 (diff)
downloadcpython-7503509f196044e60d7506115a5919ad3eff6c58.zip
cpython-7503509f196044e60d7506115a5919ad3eff6c58.tar.gz
cpython-7503509f196044e60d7506115a5919ad3eff6c58.tar.bz2
Issue #23996: Avoid a crash when a delegated generator raises an unnormalized StopIteration exception. Patch by Stefan Behnel.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1d54c5f..e44958b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: 2015-04-24
Core and Builtins
-----------------
+- Issue #23996: Avoid a crash when a delegated generator raises an
+ unnormalized StopIteration exception. Patch by Stefan Behnel.
+
- Issue #24022: Fix tokenizer crash when processing undecodable source code.
- Issue #9951: Added a hex() method to bytes, bytearray, and memoryview.