summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2007-01-08 18:52:36 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2007-01-08 18:52:36 (GMT)
commitc9137263d5e0c9892a54a710d8f661b97df7a0ee (patch)
tree6acc2470022efad626c569f996fb1e09f5ae8d51 /Misc/NEWS
parent2cd79f6b7871c65523153f3d44c8e6f895f415ca (diff)
downloadcpython-c9137263d5e0c9892a54a710d8f661b97df7a0ee.zip
cpython-c9137263d5e0c9892a54a710d8f661b97df7a0ee.tar.gz
cpython-c9137263d5e0c9892a54a710d8f661b97df7a0ee.tar.bz2
Added entries about removal of some bare except clauses from logging.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b1a794b..6653954 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -109,6 +109,15 @@ Core and builtins
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.