diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-16 16:02:49 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-16 16:02:49 (GMT) |
commit | f5553bbb0e8063363ab3312bf4f61718b32d1dc8 (patch) | |
tree | 892518578385476c0da87a37dba225d2b36a8f1a /Misc | |
parent | 7bc279c49fba2b9d59f47982658e46c5cd0e0f31 (diff) | |
parent | 05dadcfb28b815c9558fe2a6a74cd3ce7df62577 (diff) | |
download | cpython-f5553bbb0e8063363ab3312bf4f61718b32d1dc8.zip cpython-f5553bbb0e8063363ab3312bf4f61718b32d1dc8.tar.gz cpython-f5553bbb0e8063363ab3312bf4f61718b32d1dc8.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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -196,6 +196,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. |