Handle utf-8 output encoding in py3 also. Fixes #382

This commit is contained in:
Matt Martz 2017-04-10 15:32:14 -05:00
parent 2e79fbf1dc
commit 1642d0669f
1 changed files with 22 additions and 4 deletions

View File

@ -135,7 +135,7 @@ try:
BytesIO = None
except ImportError:
try:
from io import StringIO, BytesIO
from io import StringIO, BytesIO, TextIOWrapper, FileIO
except ImportError:
from StringIO import StringIO
BytesIO = None
@ -158,7 +158,7 @@ except ImportError:
if not isinstance(data, basestring):
data = str(data)
# If the file has an encoding, encode unicode with it.
encoding = 'UTF-8' # Always trust UTF-8 for output
encoding = 'utf8' # Always trust UTF-8 for output
if (isinstance(fp, file) and
isinstance(data, unicode) and
encoding is not None):
@ -203,8 +203,26 @@ except ImportError:
write(arg)
write(end)
else:
print_ = getattr(builtins, 'print')
del builtins
class _Py3Utf8Stdout(TextIOWrapper):
def __init__(self, **kwargs):
buf = FileIO(sys.stdout.fileno(), 'w')
super(_Py3Utf8Stdout, self).__init__(
buf,
encoding='utf8',
errors='strict'
)
def write(self, s):
super(_Py3Utf8Stdout, self).write(s)
self.flush()
_py3_print = getattr(builtins, 'print')
_py3_utf8_stdout = _Py3Utf8Stdout()
def print_(*args, **kwargs):
kwargs['file'] = _py3_utf8_stdout
_py3_print(*args, **kwargs)
# Exception "constants" to support Python 2 through Python 3
try: