diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-05-20 09:42:37 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-05-20 09:42:37 (GMT) |
commit | 19ed27ec2b6d8871249e0dd8f56d40a0a78094f8 (patch) | |
tree | fd8d3c94bdff9438b9b330da6f7ea4b63ebe2378 /Misc | |
parent | 744c34e2ea91ba8f9e945bbeba121c7e95063056 (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |