summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-17 22:54:40 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-17 22:54:40 (GMT)
commit8f1fefab9a0816dd9fb089a7a0398e195a8e4b97 (patch)
tree30f294de2ad93aeb5b7949b7bfe96a190a5ddbb1 /Misc
parent5439458a2a5f4da38eeef2007f400152148fe04f (diff)
parent8572da5e961f6a645e3e8932568afd889448e78b (diff)
downloadcpython-8f1fefab9a0816dd9fb089a7a0398e195a8e4b97.zip
cpython-8f1fefab9a0816dd9fb089a7a0398e195a8e4b97.tar.gz
cpython-8f1fefab9a0816dd9fb089a7a0398e195a8e4b97.tar.bz2
Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module.
Patch by Serhiy Storchaka.
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 df8f014..178cf2b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -130,6 +130,9 @@ Core and Builtins
Library
-------
+- Issue #16408: Fix file descriptors not being closed in error conditions
+ in the zipfile module. Patch by Serhiy Storchaka.
+
- Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak
references to bound methods.