diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-29 19:10:07 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-29 19:10:07 (GMT) |
commit | e060619d4b047fdee613cafc64e3a9242a68ea54 (patch) | |
tree | 11c55e928773fe9e11be79432c5d28606290c137 /Misc | |
parent | d455a50773eb1f4531882a0b99ff7a253ad1d41e (diff) | |
download | cpython-e060619d4b047fdee613cafc64e3a9242a68ea54.zip cpython-e060619d4b047fdee613cafc64e3a9242a68ea54.tar.gz cpython-e060619d4b047fdee613cafc64e3a9242a68ea54.tar.bz2 |
Issue #25262. Added support for BINBYTES8 opcode in Python implementation of
unpickler. Highest 32 bits of 64-bit size for BINUNICODE8 and BINBYTES8
opcodes no longer silently ignored on 32-bit platforms in C implementation.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -78,6 +78,10 @@ Core and Builtins Library ------- +- Issue #25262. Added support for BINBYTES8 opcode in Python implementation of + unpickler. Highest 32 bits of 64-bit size for BINUNICODE8 and BINBYTES8 + opcodes no longer silently ignored on 32-bit platforms in C implementation. + - Issue #25034: Fix string.Formatter problem with auto-numbering and nested format_specs. Patch by Anthon van der Neut. |