summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-05-20 09:42:37 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-05-20 09:42:37 (GMT)
commit19ed27ec2b6d8871249e0dd8f56d40a0a78094f8 (patch)
treefd8d3c94bdff9438b9b330da6f7ea4b63ebe2378 /Misc
parent744c34e2ea91ba8f9e945bbeba121c7e95063056 (diff)
downloadcpython-19ed27ec2b6d8871249e0dd8f56d40a0a78094f8.zip
cpython-19ed27ec2b6d8871249e0dd8f56d40a0a78094f8.tar.gz
cpython-19ed27ec2b6d8871249e0dd8f56d40a0a78094f8.tar.bz2
Optimize pickle.load() and pickle.loads()
Issue #27056: Optimize pickle.load() and pickle.loads(), up to 10% faster to deserialize a lot of small objects.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 94e508f..ba66c4e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
Library
-------
+- Issue #27056: Optimize pickle.load() and pickle.loads(), up to 10% faster
+ to deserialize a lot of small objects.
+
What's New in Python 3.6.0 alpha 1?
===================================
@@ -341,7 +344,7 @@ Library
- Issue #26977: Removed unnecessary, and ignored, call to sum of squares helper
in statistics.pvariance.
-- Issue #26002: Use bisect in statistics.median instead of a linear search.
+- Issue #26002: Use bisect in statistics.median instead of a linear search.
Patch by Upendra Kuma.
- Issue #25974: Make use of new Decimal.as_integer_ratio() method in statistics