Patch #520483: Make IDLE OutputWindow handle Unicode.
2.2.1 candidate.
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 @@
     # 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()