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

Ka-Ping Yee ping@users.sourceforge.net
Thu, 01 Mar 2001 05:56:42 -0800


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

Modified Files:
	tokenize.py 
Log Message:
Add __author__ and __credits__ variables.


Index: tokenize.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/tokenize.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** tokenize.py	2001/03/01 04:27:19	1.19
--- tokenize.py	2001/03/01 13:56:40	1.20
***************
*** 10,14 ****
  it produces COMMENT tokens for comments and gives type OP for all operators."""
  
! __version__ = "Ka-Ping Yee, 26 October 1997; patched, GvR 3/30/98"
  
  import string, re
--- 10,15 ----
  it produces COMMENT tokens for comments and gives type OP for all operators."""
  
! __author__ = 'Ka-Ping Yee <ping@lfw.org>'
! __credits__ = 'first version, 26 October 1997; patched, GvR 3/30/98'
  
  import string, re