Skip to content

Commit d9dece9

Browse files
author
vinay.sajip
committedFeb 8, 2009
Issue #5170: Fixed Unicode output bug in logging and added test case. This is a regression which did not occur in 2.5.
git-svn-id: http://svn.python.org/projects/python/trunk@69447 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 23a7779 commit d9dece9

File tree

3 files changed

+38
-10
lines changed

3 files changed

+38
-10
lines changed
 

‎Lib/logging/__init__.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -758,17 +758,19 @@ def emit(self, record):
758758
"""
759759
try:
760760
msg = self.format(record)
761+
stream = self.stream
761762
fs = "%s\n"
762763
if not hasattr(types, "UnicodeType"): #if no unicode support...
763-
self.stream.write(fs % msg)
764+
stream.write(fs % msg)
764765
else:
765766
try:
766-
if getattr(self.stream, 'encoding', None) is not None:
767-
self.stream.write(fs % msg.encode(self.stream.encoding))
767+
if (isinstance(msg, unicode) or
768+
getattr(stream, 'encoding', None) is None):
769+
stream.write(fs % msg)
768770
else:
769-
self.stream.write(fs % msg)
771+
stream.write(fs % msg.encode(stream.encoding))
770772
except UnicodeError:
771-
self.stream.write(fs % msg.encode("UTF-8"))
773+
stream.write(fs % msg.encode("UTF-8"))
772774
self.flush()
773775
except (KeyboardInterrupt, SystemExit):
774776
raise

‎Lib/test/test_logging.py

+25-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
#
3-
# Copyright 2001-2004 by Vinay Sajip. All Rights Reserved.
3+
# Copyright 2001-2009 by Vinay Sajip. All Rights Reserved.
44
#
55
# Permission to use, copy, modify, and distribute this software and its
66
# documentation for any purpose and without fee is hereby granted,
@@ -18,13 +18,14 @@
1818

1919
"""Test harness for the logging module. Run all tests.
2020
21-
Copyright (C) 2001-2008 Vinay Sajip. All Rights Reserved.
21+
Copyright (C) 2001-2009 Vinay Sajip. All Rights Reserved.
2222
"""
2323

2424
import logging
2525
import logging.handlers
2626
import logging.config
2727

28+
import codecs
2829
import copy
2930
import cPickle
3031
import cStringIO
@@ -860,6 +861,7 @@ def test_persistent_loggers(self):
860861
('foo', 'DEBUG', '3'),
861862
])
862863

864+
863865
class EncodingTest(BaseTest):
864866
def test_encoding_plain_file(self):
865867
# In Python 2.x, a plain file object is treated as having no encoding.
@@ -886,6 +888,27 @@ def test_encoding_plain_file(self):
886888
if os.path.isfile(fn):
887889
os.remove(fn)
888890

891+
def test_encoding_cyrillic_unicode(self):
892+
log = logging.getLogger("test")
893+
#Get a message in Unicode: Do svidanya in Cyrillic (meaning goodbye)
894+
message = u'\u0434\u043e \u0441\u0432\u0438\u0434\u0430\u043d\u0438\u044f'
895+
#Ensure it's written in a Cyrillic encoding
896+
writer_class = codecs.getwriter('cp1251')
897+
stream = cStringIO.StringIO()
898+
writer = writer_class(stream, 'strict')
899+
handler = logging.StreamHandler(writer)
900+
log.addHandler(handler)
901+
try:
902+
log.warning(message)
903+
finally:
904+
log.removeHandler(handler)
905+
handler.close()
906+
# check we wrote exactly those bytes, ignoring trailing \n etc
907+
s = stream.getvalue()
908+
#Compare against what the data should be when encoded in CP-1251
909+
self.assertEqual(s, '\xe4\xee \xf1\xe2\xe8\xe4\xe0\xed\xe8\xff\n')
910+
911+
889912
class WarningsTest(BaseTest):
890913
def test_warnings(self):
891914
logging.captureWarnings(True)

‎Misc/NEWS

+6-3
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@ Core and Builtins
149149
Library
150150
-------
151151

152+
- Issue #5170: Fixed Unicode output bug in logging and added test case.
153+
This is a regression which did not occur in 2.5.
154+
152155
- Issue #4512 (part 2): Promote ``ZipImporter._get_filename()`` to be a
153156
public documented method ``ZipImporter.get_filename()``.
154157

@@ -162,7 +165,7 @@ Library
162165
Tkapp_Call when calling from a thread different than the one that created
163166
the Tcl interpreter. Patch by Robert Hancock.
164167

165-
- Issue #1520877: Now distutils.sysconfig reads $AR from the
168+
- Issue #1520877: Now distutils.sysconfig reads $AR from the
166169
environment/Makefile. Patch by Douglas Greiman.
167170

168171
- Issue #4285: Change sys.version_info to be a named tuple. Patch by
@@ -171,7 +174,7 @@ Library
171174
- Issue #1276768: The verbose option was not used in the code of
172175
distutils.file_util and distutils.dir_util.
173176

174-
- Issue #5132: Fixed trouble building extensions under Solaris with
177+
- Issue #5132: Fixed trouble building extensions under Solaris with
175178
--enabled-shared activated. Initial patch by Dave Peterson.
176179

177180
- Issue #1581476: Always use the Tcl global namespace when calling into Tcl.
@@ -212,7 +215,7 @@ Library
212215
- Issue #4710: Extract directories properly in the zipfile module;
213216
allow adding directories to a zipfile.
214217

215-
- Issue #3807: _multiprocessing build fails when configure is passed
218+
- Issue #3807: _multiprocessing build fails when configure is passed
216219
--without-threads argument. When this occurs, _multiprocessing will
217220
be disabled, and not compiled.
218221

0 commit comments

Comments
 (0)
Please sign in to comment.