Patch #520483: Make IDLE OutputWindow handle Unicode.

2.2.1 candidate.
This commit is contained in:
Martin v. Löwis 2002-02-23 22:39:37 +00:00
parent 0ac16ec149
commit dc13517586

View file

@ -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()