summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2017-04-01 08:20:25 (GMT)
committerGitHub <noreply@github.com>2017-04-01 08:20:25 (GMT)
commite82cf8675bacd7a03de508ed11865fc2701dcef5 (patch)
tree757568ed2b04b890701340f29f40e7f0983f3c30 /Misc
parentcd815edf012dc6dd20dfeef91951270e96607616 (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b0a0ba0..a9acaf8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.