summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2013-05-10 15:47:42 (GMT)
committerGuido van Rossum <guido@python.org>2013-05-10 15:47:42 (GMT)
commit6832c81d5d2d730c38bab001e0c1b4b0569dd5ef (patch)
treef4725451768bda1987adf4eca22d2e232018fd9f /Misc
parent8c01ffa6ede5da92ab144ad2ea609a96e308b1e6 (diff)
downloadcpython-6832c81d5d2d730c38bab001e0c1b4b0569dd5ef.zip
cpython-6832c81d5d2d730c38bab001e0c1b4b0569dd5ef.tar.gz
cpython-6832c81d5d2d730c38bab001e0c1b4b0569dd5ef.tar.bz2
#17927: Keep frame from referencing cell-ified arguments.
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 d56163d..d807d0b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #17927: Frame objects kept arguments alive if they had been
+ copied into a cell, even if the cell was cleared.
+
- Issue #17807: Generators can now be finalized even when they are part of
a reference cycle.