[Python-checkins] r53303 - python/trunk/Misc/NEWS

vinay.sajip python-checkins at python.org
Mon Jan 8 19:52:36 CET 2007


Author: vinay.sajip
Date: Mon Jan  8 19:52:36 2007
New Revision: 53303

Modified:
   python/trunk/Misc/NEWS
Log:
Added entries about removal of some bare except clauses from logging.

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Mon Jan  8 19:52:36 2007
@@ -109,6 +109,15 @@
 Library
 -------
 
+- Bug #411881: logging.handlers: bare except clause removed from
+  SMTPHandler.emit. Now, only ImportError is trapped.
+
+- Bug #411881: logging.handlers: bare except clause removed from
+  SocketHandler.createSocket. Now, only socket.error is trapped.
+
+- Bug #411881: logging: bare except clause removed from LogRecord.__init__.
+  Now, only ValueError, TypeError and AttributeError are trapped.
+
 - Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument.
 
 - Patch #1182394 from Shane Holloway: speed up HMAC.hexdigest.


More information about the Python-checkins mailing list