summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2013-12-06 03:29:32 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2013-12-06 03:29:32 (GMT)
commit6e73ff1a31a430b00d9e5aa537dc08cbbe89bd2d (patch)
treeca782a6fa57f2cfd86264ff53b8030ccbb2a03b5 /Misc
parentc9a87e6bbebd87691de435b1c4b2a456d073222d (diff)
downloadcpython-6e73ff1a31a430b00d9e5aa537dc08cbbe89bd2d.zip
cpython-6e73ff1a31a430b00d9e5aa537dc08cbbe89bd2d.tar.gz
cpython-6e73ff1a31a430b00d9e5aa537dc08cbbe89bd2d.tar.bz2
Issue #19881: Fix bad pickling of large bytes in cpickle.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 90e0dce..2d7acdd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,11 +18,15 @@ Core and Builtins
Library
-------
+
- Issue #19296: Silence compiler warning in dbm_open
- Issue #19839: Fix regression in bz2 module's handling of non-bzip2 data at
EOF, and analogous bug in lzma module.
+- Issue #19881: Fix pickling bug where cpickle would emit bad pickle data for
+ large bytes string (i.e., with size greater than 2**32-1).
+
- Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows a match when
no exception detail exists (no colon following the exception's name, or
a colon does follow but no text follows the colon).