summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-09 18:33:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-09 18:33:21 (GMT)
commitea99c5c94985c21d8a64c9a3d753bde7f801c14a (patch)
tree193ab657d8c66abf7b3147b17b5d1fe7c79f3c87 /Misc
parent350c7229be7b288e2f4c93d0ae2e111cb15f640e (diff)
downloadcpython-ea99c5c94985c21d8a64c9a3d753bde7f801c14a.zip
cpython-ea99c5c94985c21d8a64c9a3d753bde7f801c14a.tar.gz
cpython-ea99c5c94985c21d8a64c9a3d753bde7f801c14a.tar.bz2
Issue #9410: Various optimizations to the pickle module, leading to
speedups up to 4x (depending on the benchmark). Mostly ported from Unladen Swallow; initial patch by Alexandre Vassalotti.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4966aa9..eedea78 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,10 @@ Core and Builtins
Library
-------
+- Issue #9410: Various optimizations to the pickle module, leading to
+ speedups up to 4x (depending on the benchmark). Mostly ported from
+ Unladen Swallow; initial patch by Alexandre Vassalotti.
+
- The pprint module now supports printing OrderedDicts in their given
order (formerly, it would sort the keys).