summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2008-09-01 14:33:59 +0000
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2008-09-01 14:33:59 +0000
commit35e3b03e86004bf72be2f1619eec514db6c2925f (patch)
treea77947ccc22e1c84f99eeffd624643871795b539
parented8c6441b507536e7f036d61414a6f32322ed3f0 (diff)
downloadcpython-git-35e3b03e86004bf72be2f1619eec514db6c2925f.tar.gz
logging: fixed lack of use of encoding attribute specified on a stream.
-rw-r--r--Misc/NEWS6
1 files changed, 4 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 99c32b53d1..d8145c37de 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,10 +15,10 @@ Core and Builtins
- 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 @@ C-API
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.