summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-05 17:39:57 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-05 17:39:57 (GMT)
commitbdddb11b0efd438696b5fa3e75f323248c22af7d (patch)
tree4f89755fd6da8eedb2238da80972e602208b9cee /Misc
parent80109d3351d2d1758caa2ff37bc4b69cc91a2fbe (diff)
downloadcpython-bdddb11b0efd438696b5fa3e75f323248c22af7d.zip
cpython-bdddb11b0efd438696b5fa3e75f323248c22af7d.tar.gz
cpython-bdddb11b0efd438696b5fa3e75f323248c22af7d.tar.bz2
clear out f_gen during generator finalization (closes #27812)
Patch from Armin Rigo.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8558db4..4b18999 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #27812: Properly clear out a generator's frame's backreference to the
+ generator to prevent crashes in frame.clear().
+
- Issue #27811: Fix a crash when a coroutine that has not been awaited is
finalized with warnings-as-errors enabled.