diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2015-06-04 11:52:57 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2015-06-04 11:52:57 (GMT) |
commit | 53f95024d7ef25a39e70aa45ffdcefbb084821ed (patch) | |
tree | cbb1b3e934a59b2912ce172cc00bb467c56313c4 /Misc/NEWS | |
parent | 4fabf02633f7f537a8318a7541eec02cb3338a0d (diff) | |
download | cpython-53f95024d7ef25a39e70aa45ffdcefbb084821ed.zip cpython-53f95024d7ef25a39e70aa45ffdcefbb084821ed.tar.gz cpython-53f95024d7ef25a39e70aa45ffdcefbb084821ed.tar.bz2 |
Issue #24373: Eliminate PEP 489 test refleaks
_testmultiphase and xxlimited now use tp_traverse and
tp_finalize to avoid reference leaks encountered when
combining tp_dealloc with PyType_FromSpec (see
issue #16690 for details)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -29,6 +29,13 @@ Library - Issue #24369: Defend against key-changes during iteration. +Tests +----- + +- Issue #24373: _testmultiphase and xxlimited now use tp_traverse and + tp_finalize to avoid reference leaks encountered when combining tp_dealloc + with PyType_FromSpec (see issue #16690 for details) + What's New in Python 3.5.0 beta 2? ================================== |