summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-01-01 14:11:22 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-01-01 14:11:22 (GMT)
commitaa687902f21dc32a72f578a992cc9e44444ced44 (patch)
treedcd5060070b8236e3f8a3c8561030099d95992f7 /Misc
parent4ba9f412bfec4462e17c91e6fe63aeda80b43974 (diff)
downloadcpython-aa687902f21dc32a72f578a992cc9e44444ced44.zip
cpython-aa687902f21dc32a72f578a992cc9e44444ced44.tar.gz
cpython-aa687902f21dc32a72f578a992cc9e44444ced44.tar.bz2
Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected.
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 9639b18..8ab8dd2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #3680: Reference cycles created through a dict, set or deque iterator
+ did not get collected.
+
- Issue #4701: PyObject_Hash now implicitly calls PyType_Ready on types
where the tp_hash and tp_dict slots are both NULL.