commit | dc1351758672caf5a3ff3c3f57ecf6f9d16a48f2 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Sat Feb 23 22:39:37 2002 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Sat Feb 23 22:39:37 2002 +0000 |
tree | 86e034eb80d095522894567fc691cd916ed8be9d | |
parent | 0ac16ec1493e76721d37d537a132195fdb2cbe4f [diff] |
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()