[Python-checkins] CVS: python/dist/src/Lib tokenize.py,1.20,1.21

Ka-Ping Yee ping@users.sourceforge.net
Thu, 01 Mar 2001 09:11:19 -0800


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

Modified Files:
	tokenize.py 
Log Message:
Better __credits__.


Index: tokenize.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/tokenize.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** tokenize.py	2001/03/01 13:56:40	1.20
--- tokenize.py	2001/03/01 17:11:17	1.21
***************
*** 11,15 ****
  
  __author__ = 'Ka-Ping Yee <ping@lfw.org>'
! __credits__ = 'first version, 26 October 1997; patched, GvR 3/30/98'
  
  import string, re
--- 11,16 ----
  
  __author__ = 'Ka-Ping Yee <ping@lfw.org>'
! __credits__ = \
!     'GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro'
  
  import string, re