summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-02-11 13:53:31 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-02-11 13:53:31 (GMT)
commitce921c62ccc9d248843b0c3e54464bd78aa66c61 (patch)
tree2f6bfb026a7968c8f774c0de53078ef911dc55d7 /Misc
parentbd09d7bac5d8bb0d3319b3b0625e3114852090e8 (diff)
downloadcpython-ce921c62ccc9d248843b0c3e54464bd78aa66c61.zip
cpython-ce921c62ccc9d248843b0c3e54464bd78aa66c61.tar.gz
cpython-ce921c62ccc9d248843b0c3e54464bd78aa66c61.tar.bz2
Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster on
average.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d704e64..3f8985d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster on
+ average.
+
- Issue #23421: Fixed compression in tarfile CLI. Patch by wdv4758h.
- Issue #23361: Fix possible overflow in Windows subprocess creation code.