Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 75a8e65

Browse files
author
Steven M. Gava
committed
tracking changes to python idle:
python Patch #520483: Make IDLE OutputWindow handle Unicode.
1 parent dc13517 commit 75a8e65

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/idlelib/OutputWindow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def enter_callback(self, event):
134134

135135
def write(self, s, tags=(), mark="iomark"):
136136
self.text.mark_gravity(mark, RIGHT)
137-
self.text.insert(mark, str(s), tags)
137+
self.text.insert(mark, s, tags)
138138
self.text.mark_gravity(mark, LEFT)
139139
self.text.see(mark)
140140
self.text.update()

0 commit comments

Comments
 (0)