diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2008-09-01 15:10:14 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2008-09-01 15:10:14 (GMT) |
commit | c6b09ebe58a968a85c725c3c01a1d6bca16fada0 (patch) | |
tree | 3ca5fc5f41464ed1e16bc780638891ddc99d5e16 /Misc/NEWS | |
parent | d26782e8639df937fac1ef3f208986274138d5c1 (diff) | |
download | cpython-c6b09ebe58a968a85c725c3c01a1d6bca16fada0.zip cpython-c6b09ebe58a968a85c725c3c01a1d6bca16fada0.tar.gz cpython-c6b09ebe58a968a85c725c3c01a1d6bca16fada0.tar.bz2 |
#3712: The memoryview object had a reference leak and didn't support cyclic garbage collection.
Reviewed by Benjamin Peterson.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.0 release candidate 1 Core and Builtins ----------------- +- Issue #3712: The memoryview object had a reference leak and didn't support + cyclic garbage collection. + - Issue #3668: Fix a memory leak with the "s*" argument parser in PyArg_ParseTuple and friends, which occurred when the argument for "s*" was correctly parsed but parsing of subsequent arguments failed. |