summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-06-27 22:25:03 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-06-27 22:25:03 (GMT)
commitc0fac96c29a3842d9370e4c954ae1f4d57f849d0 (patch)
tree79a674fa3d0b905a3d395ded0998cb56606ef298 /Misc
parent6f3eaa67e51ed0c1b493a26afdf4417d4105d96d (diff)
downloadcpython-c0fac96c29a3842d9370e4c954ae1f4d57f849d0.zip
cpython-c0fac96c29a3842d9370e4c954ae1f4d57f849d0.tar.gz
cpython-c0fac96c29a3842d9370e4c954ae1f4d57f849d0.tar.bz2
SF patch #756996: Bare except in ZipFile.testzip()
(Contributed by Steven Taschuk) Replaces a bare except that caused all errors to be mis-reported as archive errors. Added a related NEWS item.
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 ab04a40..08ca40f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -83,6 +83,10 @@ Extension modules
Library
-------
+- ZipFile.testzip() now only traps BadZipfile exceptions. Previously,
+ a bare except caught to much and reported all errors as a problem
+ in the archive.
+
- The logging module now has a new function, makeLogRecord() making
LogHandler easier to interact with DatagramHandler and SocketHandler.