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

Tim Peters tim_one@users.sourceforge.net
Fri, 20 Jul 2001 23:07:15 -0700


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

Modified Files:
      Tag: descr-branch
	codehack.py 
Log Message:
Merge of trunk delta date2001-07-17b to date2001-07-21.  See PLAN.txt.


Index: codehack.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/lib-old/codehack.py,v
retrieving revision 1.5
retrieving revision 1.5.6.1
diff -C2 -r1.5 -r1.5.6.1
*** codehack.py	2001/02/09 11:26:22	1.5
--- codehack.py	2001/07/21 06:07:13	1.5.6.1
***************
*** 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