summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-09-10 18:28:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-09-10 18:28:07 (GMT)
commitb0d497c0726c118d40dfadea807b32077f067100 (patch)
tree4f4d8502ad09d2197f22d0e86b3c2635fe1ce739 /Misc
parentb32e869eb1f63907c54aacf725601d637f1171c1 (diff)
downloadcpython-b0d497c0726c118d40dfadea807b32077f067100.zip
cpython-b0d497c0726c118d40dfadea807b32077f067100.tar.gz
cpython-b0d497c0726c118d40dfadea807b32077f067100.tar.bz2
Issue #24693: Changed some RuntimeError's in the zipfile module to more
appropriate types. Improved some error messages and debugging output.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 42821a4..27a3d8f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -135,6 +135,9 @@ Core and Builtins
Library
-------
+- Issue #24693: Changed some RuntimeError's in the zipfile module to more
+ appropriate types. Improved some error messages and debugging output.
+
- Issue #17909: ``json.load`` and ``json.loads`` now support binary input
encoded as UTF-8, UTF-16 or UTF-32. Patch by Serhiy Storchaka.