summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-09-06 20:55:11 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-09-06 20:55:11 (GMT)
commit90493ab30cd746d9063ec4cb76ad24e77da34702 (patch)
tree514d2dbc6f7faf5386a26ebebbdbf16cc9dfb717 /Misc
parentdf6ff7bcca1d73b25c79ad61b64ab4d8c3462a8c (diff)
downloadcpython-90493ab30cd746d9063ec4cb76ad24e77da34702.zip
cpython-90493ab30cd746d9063ec4cb76ad24e77da34702.tar.gz
cpython-90493ab30cd746d9063ec4cb76ad24e77da34702.tar.bz2
Issue #25761: Improved error reporting about truncated pickle data in
C implementation of unpickler. UnpicklingError is now raised instead of AttributeError and ValueError in some cases.
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 9198e31..c3672b2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -89,6 +89,10 @@ Core and Builtins
Library
-------
+- Issue #25761: Improved error reporting about truncated pickle data in
+ C implementation of unpickler. UnpicklingError is now raised instead of
+ AttributeError and ValueError in some cases.
+
- Issue #26798: Add BLAKE2 (blake2b and blake2s) to hashlib.
- Issue #25596: Optimized glob() and iglob() functions in the