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.
diff --git a/Misc/NEWS b/Misc/NEWS
index 09e9597..e10ebc6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -167,6 +167,10 @@
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.