[Idle-dev] CVS: idle OutputWindow.py,1.4,1.5

Kurt B. Kaiser kbk@users.sourceforge.net
Mon, 02 Sep 2002 14:29:42 -0700


Update of /cvsroot/idlefork/idle
In directory usw-pr-cvs1:/tmp/cvs-serv15976

Modified Files:
	OutputWindow.py 
Log Message:
(Re)Apply Sourceforge Python patch 520483, Sourceforge Idlefork patch
521908 (again) to MAIN

The patch applied by Steven was inadvertently reverted during the
transition to GRPC.

Python 2.3a0 (#3, May  8 2002, 23:37:01) 
[GCC egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)] on linux2
Type "copyright", "credits" or "license" for more information.
GRPC IDLE Fork 0.8.2
>>> print u'\xbfQu\xe9 pas\xf3?'
¿Qué pasó?
Modified Files:
	OutputWindow.py 


Index: OutputWindow.py
===================================================================
RCS file: /cvsroot/idlefork/idle/OutputWindow.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** OutputWindow.py	12 Jun 2002 03:28:57 -0000	1.4
--- OutputWindow.py	2 Sep 2002 21:29:40 -0000	1.5
***************
*** 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()