Kaydet (Commit) 75a8e658 authored tarafından Steven M. Gava's avatar Steven M. Gava

tracking changes to python idle:

python Patch #520483: Make IDLE OutputWindow handle Unicode.
üst dc135175
......@@ -134,7 +134,7 @@ class OutputWindow(EditorWindow):
def write(self, s, tags=(), mark="iomark"):
self.text.mark_gravity(mark, RIGHT)
self.text.insert(mark, str(s), tags)
self.text.insert(mark, s, tags)
self.text.mark_gravity(mark, LEFT)
self.text.see(mark)
self.text.update()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment