diff options
author | Guido van Rossum <guido@python.org> | 2013-05-10 15:47:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-05-10 15:47:42 (GMT) |
commit | 6832c81d5d2d730c38bab001e0c1b4b0569dd5ef (patch) | |
tree | f4725451768bda1987adf4eca22d2e232018fd9f /Misc | |
parent | 8c01ffa6ede5da92ab144ad2ea609a96e308b1e6 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |