diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2017-04-01 08:20:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-01 08:20:25 (GMT) |
commit | e82cf8675bacd7a03de508ed11865fc2701dcef5 (patch) | |
tree | 757568ed2b04b890701340f29f40e7f0983f3c30 /Misc | |
parent | cd815edf012dc6dd20dfeef91951270e96607616 (diff) | |
download | cpython-e82cf8675bacd7a03de508ed11865fc2701dcef5.zip cpython-e82cf8675bacd7a03de508ed11865fc2701dcef5.tar.gz cpython-e82cf8675bacd7a03de508ed11865fc2701dcef5.tar.bz2 |
bpo-29949: Fix set memory usage regression (GH-943)
Revert "Minor factoring: move redundant resize scaling logic into the resize function."
This reverts commit 4897300276d870f99459c82b937f0ac22450f0b6.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ What's New in Python 3.7.0 alpha 1? Core and Builtins ----------------- +- bpo-29949: Fix memory usage regression of set and frozenset object. + - bpo-29935: Fixed error messages in the index() method of tuple, list and deque when pass indices of wrong type. |