diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-12-06 03:29:32 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-12-06 03:29:32 (GMT) |
commit | 6e73ff1a31a430b00d9e5aa537dc08cbbe89bd2d (patch) | |
tree | ca782a6fa57f2cfd86264ff53b8030ccbb2a03b5 /Misc | |
parent | c9a87e6bbebd87691de435b1c4b2a456d073222d (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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). |