summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-18 11:18:06 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-18 11:18:06 (GMT)
commit9e94972eede8b2bb9a16f867db3da9892759ac70 (patch)
tree7fa61ad24940900a02c128f2c688310bfe4d6ef1 /Misc
parent355637be326a66cee1da4282b8c730bd7adc8f27 (diff)
downloadcpython-9e94972eede8b2bb9a16f867db3da9892759ac70.zip
cpython-9e94972eede8b2bb9a16f867db3da9892759ac70.tar.gz
cpython-9e94972eede8b2bb9a16f867db3da9892759ac70.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 b2da236..f50ed54 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -148,6 +148,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.