summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-05 17:40:34 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-05 17:40:34 (GMT)
commit7b24b273024a66e9a024c8866978db2d2cc0b6d3 (patch)
tree9cf20d5d487f73440fcae78585774bc004f470ce /Misc
parent339a6cf79b7d502f8ad0002ebe18037ddc36da53 (diff)
parentbdddb11b0efd438696b5fa3e75f323248c22af7d (diff)
downloadcpython-7b24b273024a66e9a024c8866978db2d2cc0b6d3.zip
cpython-7b24b273024a66e9a024c8866978db2d2cc0b6d3.tar.gz
cpython-7b24b273024a66e9a024c8866978db2d2cc0b6d3.tar.bz2
merge 3.5 (#27812)
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 01bef3c..596f0d0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
- Issue #27506: Support passing the bytes/bytearray.translate() "delete"
argument by keyword.
+- 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.