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

Kurt B. Kaiser kbk@users.sourceforge.net
Sun, 15 Sep 2002 13:50:04 -0700


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

Modified Files:
	AutoExpand.py 
Log Message:
Merge Py Idle's Rev 1.5
Use string.ascii_letters instead of string.letters (SF bug #226706)


Index: AutoExpand.py
===================================================================
RCS file: /cvsroot/idlefork/idle/AutoExpand.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** AutoExpand.py	19 Jan 2002 10:36:54 -0000	1.4
--- AutoExpand.py	15 Sep 2002 20:50:02 -0000	1.5
***************
*** 14,18 ****
      ]
  
!     wordchars = string.letters + string.digits + "_"
  
      def __init__(self, editwin):
--- 14,18 ----
      ]
  
!     wordchars = string.ascii_letters + string.digits + "_"
  
      def __init__(self, editwin):