diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-12-15 16:21:23 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-12-15 16:21:23 (GMT) |
commit | ccda5c41df456ce6b6b40198233b83e1b18b78db (patch) | |
tree | 6a098c96df5086a49a8069defa8ad906bc7a7253 /Misc | |
parent | 5e65a5f4efeca3b656779973c465abe756e86a67 (diff) | |
download | cpython-ccda5c41df456ce6b6b40198233b83e1b18b78db.zip cpython-ccda5c41df456ce6b6b40198233b83e1b18b78db.tar.gz cpython-ccda5c41df456ce6b6b40198233b83e1b18b78db.tar.bz2 |
Fix a memory leak in split-table dictionaries
Issue #28147: Fix a memory leak in split-table dictionaries: setattr() must not
convert combined table into split table.
Patch written by INADA Naoki.
(grafted from 85be9dcc16a81d3ccd1f67b056255a7f206edd47)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -7,6 +7,13 @@ What's New in Python 3.6.0 release candidate 2 *Release date: XXXX-XX-XX* +Core and Builtins +----------------- + +- Issue #28147: Fix a memory leak in split-table dictionaries: setattr() + must not convert combined table into split table. Patch written by INADA + Naoki. + Windows ------- |