From: Antoine Pitrou Date: Sat, 24 Nov 2012 19:41:34 +0000 (+0100) Subject: Issue #12848: The pure Python pickle implementation now treats object lengths as... X-Git-Tag: v3.3.1rc1~598 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9982c53c2feb6e6e03c4c6d87d77c6ee69bfc435;p=thirdparty%2FPython%2Fcpython.git 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. --- 9982c53c2feb6e6e03c4c6d87d77c6ee69bfc435 diff --cc Misc/NEWS index b3dacd2ab4c5,e10ebc6f68e0..f17cfea4d35c --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -94,6 -167,16 +94,10 @@@ Core and Builtin 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. - -- Issue #14313: zipfile now raises NotImplementedError when the compression - type is unknown. - - Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. Patch by Serhiy Storchaka.