diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-24 19:40:21 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-24 19:40:21 (GMT) |
commit | bf6ecf92fa9800b1b99d78a82518bcae30115e0c (patch) | |
tree | 8d366bc0e181a5582428d8c996dc45c12257c95a /Misc/NEWS | |
parent | 82e60de7277a9dc569c983d913a24b870c3ee2b8 (diff) | |
download | cpython-bf6ecf92fa9800b1b99d78a82518bcae30115e0c.zip cpython-bf6ecf92fa9800b1b99d78a82518bcae30115e0c.tar.gz cpython-bf6ecf92fa9800b1b99d78a82518bcae30115e0c.tar.bz2 |
Issue #12848: The pure Python pickle implementation now treats object lengths as unsigned 32-bit integers, like the C implementation does.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -167,6 +167,10 @@ Core and Builtins Library ------- +- Issue #12848: The pure Python pickle implementation now treats object + lengths as unsigned 32-bit integers, like the C implementation does. + Patch by Serhiy Storchaka. + - Issue #1160: Fix compiling large regular expressions on UCS2 builds. Patch by Serhiy Storchaka. |