summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-16 17:39:08 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-16 17:39:08 (GMT)
commit5bbd231f27f254cd92ce543dca82f65c4d90f20d (patch)
treeade2ec19f3cfa52ffe72b05ba37906e06426ba44 /Misc/NEWS
parent05dadcfb28b815c9558fe2a6a74cd3ce7df62577 (diff)
downloadcpython-5bbd231f27f254cd92ce543dca82f65c4d90f20d.zip
cpython-5bbd231f27f254cd92ce543dca82f65c4d90f20d.tar.gz
cpython-5bbd231f27f254cd92ce543dca82f65c4d90f20d.tar.bz2
Issue #15513: Added a __sizeof__ implementation for pickle classes.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ae37fd1..928c3cf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,7 +41,9 @@ Core and Builtins
Library
-------
-- Issue #19858: pickletools.optimize() now aware of the MEMOIZE opcode, can
+- Issue #15513: Added a __sizeof__ implementation for pickle classes.
+
+- Issue #19858: pickletools.optimize() now aware of the MEMOIZE opcode, can
produce more compact result and no longer produces invalid output if input
data contains MEMOIZE opcodes together with PUT or BINPUT opcodes.