From: Guido van Rossum Date: Thu, 28 Feb 2002 22:59:02 +0000 (+0000) Subject: Merge bugfix: X-Git-Tag: v2.2.1c1~130 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92afd9ee75631d7c0faebef814c61c5da66108c8;p=thirdparty%2FPython%2Fcpython.git Merge bugfix: Patch #520483: Make IDLE OutputWindow handle Unicode. 2.2.1 candidate. --- diff --git a/Tools/idle/OutputWindow.py b/Tools/idle/OutputWindow.py index 3d97362a21ff..f429f2e8bfb6 100644 --- a/Tools/idle/OutputWindow.py +++ b/Tools/idle/OutputWindow.py @@ -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()