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

vinay.sajip python-checkins at python.org
Mon Sep 1 16:34:00 CEST 2008


Author: vinay.sajip
Date: Mon Sep  1 16:33:59 2008
New Revision: 66105

Log:
logging: fixed lack of use of encoding attribute specified on a stream.

Modified:
   python/trunk/Misc/NEWS

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Mon Sep  1 16:33:59 2008
@@ -15,10 +15,10 @@
 - Issue #3683: Fix compilation when --without-threads is given.
 
 - Issue #3668: Fix a memory leak with the "s*" argument parser in
-  PyArg_ParseTuple and friends, which occurred when the argument for "s*" 
+  PyArg_ParseTuple and friends, which occurred when the argument for "s*"
   was correctly parsed but parsing of subsequent arguments failed.
 
-- Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to 
+- Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to
   match Python 2.5 speed despite the __instancecheck__ / __subclasscheck__
   mechanism. In the process, fix a bug where isinstance() and issubclass(),
   when given a tuple of classes as second argument, were looking up
@@ -50,6 +50,8 @@
 Library
 -------
 
+- logging: fixed lack of use of encoding attribute specified on a stream.
+
 - Silenced a trivial compiler warning in the sqlite module.
 
 - Fixed two format strings in the _collections module.


More information about the Python-checkins mailing list