火曜日, 4月 21, 2009

sys.stdout のエンコードを変更する

sys.stdout のエンコードを変更する

Python2.6
>>> sys.stdout = codecs.getwriter('utf-8')(sys.stdout)


Python3.0
>>> sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')

0 件のコメント: