summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-24 19:41:34 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-24 19:41:34 (GMT)
commit9982c53c2feb6e6e03c4c6d87d77c6ee69bfc435 (patch)
tree66b50f6426804af6693f4a9dda24f01584e90323 /Misc/NEWS
parent9ab09d129e7908d58f8141cbf0ef824c1037a7e4 (diff)
parentbf6ecf92fa9800b1b99d78a82518bcae30115e0c (diff)
downloadcpython-9982c53c2feb6e6e03c4c6d87d77c6ee69bfc435.zip
cpython-9982c53c2feb6e6e03c4c6d87d77c6ee69bfc435.tar.gz
cpython-9982c53c2feb6e6e03c4c6d87d77c6ee69bfc435.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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b3dacd2..f17cfea 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -94,6 +94,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 #16408: Fix file descriptors not being closed in error conditions
in the zipfile module. Patch by Serhiy Storchaka.