]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add __author__ and __credits__ variables.
authorKa-Ping Yee <ping@zesty.ca>
Thu, 1 Mar 2001 13:56:40 +0000 (13:56 +0000)
committerKa-Ping Yee <ping@zesty.ca>
Thu, 1 Mar 2001 13:56:40 +0000 (13:56 +0000)
Lib/tokenize.py

index 789d1305313e4db2c80ed24a85fdd9702e18e262..5281b28c428d1ce7ec8386897e35b7f710241c72 100644 (file)
@@ -9,7 +9,8 @@ ending (row, column) coordinates of the token, and the original line.  It is
 designed to match the working of the Python tokenizer exactly, except that
 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"
+__author__ = 'Ka-Ping Yee <ping@lfw.org>'
+__credits__ = 'first version, 26 October 1997; patched, GvR 3/30/98'
 
 import string, re
 from token import *