summaryrefslogtreecommitdiffstats
path: root/Doc
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 /Doc
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 'Doc')
-rw-r--r--Doc/whatsnew/3.6.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 52be134..67fd50f 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -467,6 +467,9 @@ Optimizations
with a short lifetime, and use :c:func:`malloc` for larger memory blocks.
(Contributed by Victor Stinner in :issue:`26249`).
+* :func:`pickle.load` and :func:`pickle.loads` are now up to 10% faster when
+ deserializing many small objects (Contributed by Victor Stinner in
+ :issue:`27056`).
Build and C API Changes
=======================