[Idle-dev] CVS: idle AutoExpand.py,1.2,1.3

Kurt B. Kaiser kbk@users.sourceforge.net
Thu, 12 Jul 2001 15:13:53 -0700


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

Modified Files:
	AutoExpand.py 
Log Message:
py-cvs-rel1_2 (Rev 1.4) merge, 
"Add Alt-slash to Unix keydefs (I somehow need it on RH 6.2).
Get rid of assignment to unused self.text.wordlist."  --GvR


Index: AutoExpand.py
===================================================================
RCS file: /cvsroot/idlefork/idle/AutoExpand.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** AutoExpand.py	2001/07/04 03:15:10	1.2
--- AutoExpand.py	2001/07/12 22:13:51	1.3
***************
*** 13,17 ****
  
      unix_keydefs = {
!         '<<expand-word>>': ['<Meta-slash>'],
      }
  
--- 13,17 ----
  
      unix_keydefs = {
!         '<<expand-word>>': ['<Meta-slash>', '<Alt-slash>'],
      }
  
***************
*** 26,30 ****
      def __init__(self, editwin):
          self.text = editwin.text
-         self.text.wordlist = None # XXX what is this?
          self.state = None
  
--- 26,29 ----