[Python-checkins] CVS: python/dist/src/Tools/idle OutputWindow.py,1.5,1.6
Martin v. L?wis
loewis@users.sourceforge.net
2002年2月23日 14:39:39 -0800
- Previous message: [Python-checkins] CVS: python/dist/src/Lib/compiler ast.py,1.20,1.21
- Next message: [Python-checkins] CVS: python/dist/src/Lib os2emxpath.py,NONE,1.1 os.py,1.50,1.51 popen2.py,1.20,1.21 site.py,1.40,1.41
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Tools/idle
In directory usw-pr-cvs1:/tmp/cvs-serv10453
Modified Files:
OutputWindow.py
Log Message:
Patch #520483: Make IDLE OutputWindow handle Unicode.
2.2.1 candidate.
Index: OutputWindow.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/OutputWindow.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** OutputWindow.py 17 Jan 2001 08:48:39 -0000 1.5
--- OutputWindow.py 23 Feb 2002 22:39:37 -0000 1.6
***************
*** 35,39 ****
def write(self, s, tags=(), mark="insert"):
! self.text.insert(mark, str(s), tags)
self.text.see(mark)
self.text.update()
--- 35,39 ----
def write(self, s, tags=(), mark="insert"):
! self.text.insert(mark, s, tags)
self.text.see(mark)
self.text.update()
- Previous message: [Python-checkins] CVS: python/dist/src/Lib/compiler ast.py,1.20,1.21
- Next message: [Python-checkins] CVS: python/dist/src/Lib os2emxpath.py,NONE,1.1 os.py,1.50,1.51 popen2.py,1.20,1.21 site.py,1.40,1.41
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]