summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-01-01 15:35:33 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-01-01 15:35:33 (GMT)
commit7ddda7830c362f59f154681fe9b2aa0c161309b1 (patch)
tree6ed81212c2f0a90fabc058a04c516d9139477fa8 /Misc
parent75edad0502c648148c6139b2d81a128559573c0d (diff)
downloadcpython-7ddda7830c362f59f154681fe9b2aa0c161309b1.zip
cpython-7ddda7830c362f59f154681fe9b2aa0c161309b1.tar.gz
cpython-7ddda7830c362f59f154681fe9b2aa0c161309b1.tar.bz2
Merged revisions 68128 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68128 | antoine.pitrou | 2009-01-01 15:11:22 +0100 (jeu., 01 janv. 2009) | 3 lines 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 d7adf60..62b7a85 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1 alpha 0
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.