summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2009-02-08 19:14:41 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2009-02-08 19:14:41 (GMT)
commit9c78658670ed97c49a474e7b6d334dc0cd3083c8 (patch)
treee55136ebb3e624636ddaa79fa2c2cc3cdebcbfd0 /Misc
parentdd0989e7df0fa92a612dafd1180519a5d573b83a (diff)
downloadcpython-9c78658670ed97c49a474e7b6d334dc0cd3083c8.zip
cpython-9c78658670ed97c49a474e7b6d334dc0cd3083c8.tar.gz
cpython-9c78658670ed97c49a474e7b6d334dc0cd3083c8.tar.bz2
Issue #5170: Fixed Unicode output bug in logging and added test case. This is a regression which did not occur in 2.5.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 47dac37..edd22af 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -80,11 +80,14 @@ Core and Builtins
Library
-------
+- Issue #5170: Fixed Unicode output bug in logging and added test case.
+ This is a regression which did not occur in 2.5.
+
- Partial fix to issue #1731706: memory leak in Tkapp_Call when calling
from a thread different than the one that created the Tcl interpreter.
Patch by Robert Hancock.
-- Issue #5132: Fixed trouble building extensions under Solaris with
+- Issue #5132: Fixed trouble building extensions under Solaris with
--enabled-shared activated. Initial patch by Dave Peterson.
- Issue #1581476: Always use the Tcl global namespace when calling into Tcl.