diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-08 00:41:11 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-08 00:41:11 (GMT) |
commit | 52c424343d625d3e795bd670aaaf542dfa63b7c7 (patch) | |
tree | 8744b09cf8766d55a1ba348258e728b9d307613e /Misc | |
parent | 1ae230aa1a0c7b51839c6d07eaaddfeef71be63b (diff) | |
download | cpython-52c424343d625d3e795bd670aaaf542dfa63b7c7.zip cpython-52c424343d625d3e795bd670aaaf542dfa63b7c7.tar.gz cpython-52c424343d625d3e795bd670aaaf542dfa63b7c7.tar.bz2 |
allow cycles throught the __dict__ slot to be cleared (closes #1469629)
Patch from Armin, test from me.
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.2.3 release candidate 1? Core and Builtins ----------------- +- Issue #1469629: Allow cycles through an object's __dict__ slot to be + collected. (For example if ``x.__dict__ is x``). + - Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object). |