summaryrefslogtreecommitdiff
path: root/Lib/tokenize.py
diff options
context:
space:
mode:
authorKa-Ping Yee <ping@zesty.ca>2001-03-01 13:56:40 +0000
committerKa-Ping Yee <ping@zesty.ca>2001-03-01 13:56:40 +0000
commit244c593598af4db19e410032fb10793617a895ce (patch)
tree6aafc258ac6d0cf29fdc3c549282ab7d38eb571d /Lib/tokenize.py
parent8b58b84d729a80a06f1bfe9ebfbbfd67de7445ef (diff)
downloadcpython-git-244c593598af4db19e410032fb10793617a895ce.tar.gz
Add __author__ and __credits__ variables.
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r--Lib/tokenize.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py
index 789d130531..5281b28c42 100644
--- a/Lib/tokenize.py
+++ b/Lib/tokenize.py
@@ -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 *