summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-16 16:00:56 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-16 16:00:56 (GMT)
commit05dadcfb28b815c9558fe2a6a74cd3ce7df62577 (patch)
tree16b06d95b5343b02e758d64d8b7ad13ca57fd145 /Misc
parentdf9386940a0104ba4dce1beee38848bc44a17036 (diff)
downloadcpython-05dadcfb28b815c9558fe2a6a74cd3ce7df62577.zip
cpython-05dadcfb28b815c9558fe2a6a74cd3ce7df62577.tar.gz
cpython-05dadcfb28b815c9558fe2a6a74cd3ce7df62577.tar.bz2
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.
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 93ae79c..ae37fd1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,10 @@ Core and Builtins
Library
-------
+- 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.
+
- Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The port
value in the host header was set to "None". Patch by Demian Brecht.