Reorder StringIO imports again, add to_utf8 function to ensure we encode csv data properly. Fixes #385
This commit is contained in:
parent
4aebe01c3e
commit
20eeadcb0c
31
speedtest.py
31
speedtest.py
|
@ -36,7 +36,7 @@ except ImportError:
|
||||||
gzip = None
|
gzip = None
|
||||||
GZIP_BASE = object
|
GZIP_BASE = object
|
||||||
|
|
||||||
__version__ = '1.0.4'
|
__version__ = '1.0.5a'
|
||||||
|
|
||||||
|
|
||||||
class FakeShutdownEvent(object):
|
class FakeShutdownEvent(object):
|
||||||
|
@ -130,22 +130,26 @@ except ImportError:
|
||||||
PARSER_TYPE_INT = 'int'
|
PARSER_TYPE_INT = 'int'
|
||||||
PARSER_TYPE_STR = 'string'
|
PARSER_TYPE_STR = 'string'
|
||||||
|
|
||||||
try:
|
|
||||||
from io import StringIO, BytesIO, TextIOWrapper, FileIO
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from cStringIO import StringIO
|
from cStringIO import StringIO
|
||||||
BytesIO = None
|
BytesIO = None
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
try:
|
||||||
from StringIO import StringIO
|
from StringIO import StringIO
|
||||||
BytesIO = None
|
BytesIO = None
|
||||||
|
except ImportError:
|
||||||
|
from io import StringIO, BytesIO
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import __builtin__
|
import __builtin__
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import builtins
|
import builtins
|
||||||
|
from io import TextIOWrapper, FileIO
|
||||||
|
|
||||||
class _Py3Utf8Stdout(TextIOWrapper):
|
class _Py3Utf8Stdout(TextIOWrapper):
|
||||||
|
"""UTF-8 encoded wrapper around stdout for py3, to override
|
||||||
|
ASCII stdout
|
||||||
|
"""
|
||||||
def __init__(self, **kwargs):
|
def __init__(self, **kwargs):
|
||||||
buf = FileIO(sys.stdout.fileno(), 'w')
|
buf = FileIO(sys.stdout.fileno(), 'w')
|
||||||
super(_Py3Utf8Stdout, self).__init__(
|
super(_Py3Utf8Stdout, self).__init__(
|
||||||
|
@ -161,12 +165,24 @@ except ImportError:
|
||||||
_py3_print = getattr(builtins, 'print')
|
_py3_print = getattr(builtins, 'print')
|
||||||
_py3_utf8_stdout = _Py3Utf8Stdout()
|
_py3_utf8_stdout = _Py3Utf8Stdout()
|
||||||
|
|
||||||
|
def to_utf8(v):
|
||||||
|
"""No-op encode to utf-8 for py3"""
|
||||||
|
return v
|
||||||
|
|
||||||
def print_(*args, **kwargs):
|
def print_(*args, **kwargs):
|
||||||
|
"""Wrapper function for py3 to print, with a utf-8 encoded stdout"""
|
||||||
kwargs['file'] = _py3_utf8_stdout
|
kwargs['file'] = _py3_utf8_stdout
|
||||||
_py3_print(*args, **kwargs)
|
_py3_print(*args, **kwargs)
|
||||||
else:
|
else:
|
||||||
del __builtin__
|
del __builtin__
|
||||||
|
|
||||||
|
def to_utf8(v):
|
||||||
|
"""Encode value to utf-8 if possible for py2"""
|
||||||
|
try:
|
||||||
|
return v.encode('utf8', 'strict')
|
||||||
|
except AttributeError:
|
||||||
|
return v
|
||||||
|
|
||||||
def print_(*args, **kwargs):
|
def print_(*args, **kwargs):
|
||||||
"""The new-style print function for Python 2.4 and 2.5.
|
"""The new-style print function for Python 2.4 and 2.5.
|
||||||
|
|
||||||
|
@ -700,10 +716,11 @@ class SpeedtestResults(object):
|
||||||
data = self.dict()
|
data = self.dict()
|
||||||
out = StringIO()
|
out = StringIO()
|
||||||
writer = csv.writer(out, delimiter=delimiter, lineterminator='')
|
writer = csv.writer(out, delimiter=delimiter, lineterminator='')
|
||||||
writer.writerow([data['server']['id'], data['server']['sponsor'],
|
row = [data['server']['id'], data['server']['sponsor'],
|
||||||
data['server']['name'], data['timestamp'],
|
data['server']['name'], data['timestamp'],
|
||||||
data['server']['d'], data['ping'], data['download'],
|
data['server']['d'], data['ping'], data['download'],
|
||||||
data['upload']])
|
data['upload']]
|
||||||
|
writer.writerow([to_utf8(v) for v in row])
|
||||||
return out.getvalue()
|
return out.getvalue()
|
||||||
|
|
||||||
def json(self, pretty=False):
|
def json(self, pretty=False):
|
||||||
|
@ -1473,5 +1490,3 @@ def main():
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
||||||
# vim:ts=4:sw=4:expandtab
|
|
||||||
|
|
Loading…
Reference in New Issue