tracking changes to python idle:

python Patch #520483: Make IDLE OutputWindow handle Unicode.
This commit is contained in:
Steven M. Gava 2002-02-23 23:27:08 +00:00
parent dc13517586
commit 75a8e65873
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ def enter_callback(self, event):
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()