From dc1351758672caf5a3ff3c3f57ecf6f9d16a48f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 23 Feb 2002 22:39:37 +0000 Subject: Patch #520483: Make IDLE OutputWindow handle Unicode. 2.2.1 candidate. --- Tools/idle/OutputWindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/idle/OutputWindow.py b/Tools/idle/OutputWindow.py index 3d97362..f429f2e 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() -- cgit v0.12