Commit dc135175 authored by Martin v. Löwis's avatar Martin v. Löwis

Patch #520483: Make IDLE OutputWindow handle Unicode.

2.2.1 candidate.
parent 0ac16ec1
......@@ -34,7 +34,7 @@ class OutputWindow(EditorWindow):
# Act as output file
def write(self, s, tags=(), mark="insert"):
self.text.insert(mark, str(s), tags)
self.text.insert(mark, s, tags)
self.text.see(mark)
self.text.update()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment