summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-18 11:20:36 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-18 11:20:36 (GMT)
commit6a5fc4c443fb7190f3f68ed1eaa799b71fa36124 (patch)
tree750a39715372ea241831a0e19d5be4a4a6fe3bd6 /Misc
parenta69be2803b25c226a439152ec680d7ee6f5e57f6 (diff)
downloadcpython-6a5fc4c443fb7190f3f68ed1eaa799b71fa36124.zip
cpython-6a5fc4c443fb7190f3f68ed1eaa799b71fa36124.tar.gz
cpython-6a5fc4c443fb7190f3f68ed1eaa799b71fa36124.tar.bz2
#14313: zipfile now raises NotImplementedError when the compression type is unknown.
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 3b48a13..3f2f728 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -164,6 +164,9 @@ Core and Builtins
Library
-------
+- Issue #14313: zipfile now raises NotImplementedError when the compression
+ type is unknown.
+
- Issue #16408: Fix file descriptors not being closed in error conditions
in the zipfile module. Patch by Serhiy Storchaka.