diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-01 15:35:33 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-01 15:35:33 (GMT) |
commit | 7ddda7830c362f59f154681fe9b2aa0c161309b1 (patch) | |
tree | 6ed81212c2f0a90fabc058a04c516d9139477fa8 /Misc | |
parent | 75edad0502c648148c6139b2d81a128559573c0d (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |