[Python-checkins] CVS: python/dist/src/Lib/lib-old codehack.py,1.5,1.6

Fred L. Drake fdrake@users.sourceforge.net
Fri, 20 Jul 2001 11:54:46 -0700


Update of /cvsroot/python/python/dist/src/Lib/lib-old
In directory usw-pr-cvs1:/tmp/cvs-serv30933/Lib/lib-old

Modified Files:
	codehack.py 
Log Message:

Use string.ascii_letters instead of string.letters (SF bug #226706).


Index: codehack.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/lib-old/codehack.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** codehack.py	2001/02/09 11:26:22	1.5
--- codehack.py	2001/07/20 18:54:44	1.6
***************
*** 32,36 ****
  
  SET_LINENO = 127 # The opcode (see "opcode.h" in the Python source)
! identchars = string.letters + string.digits + '_' # Identifier characters
  
  _namecache = {} # The cache
--- 32,36 ----
  
  SET_LINENO = 127 # The opcode (see "opcode.h" in the Python source)
! identchars = string.ascii_letters + string.digits + '_' # Identifier characters
  
  _namecache = {} # The cache