summaryrefslogtreecommitdiffstats
path: root/Lib/tokenize.py
diff options
context:
space:
mode:
authorKa-Ping Yee <ping@zesty.ca>2001-03-01 17:11:17 (GMT)
committerKa-Ping Yee <ping@zesty.ca>2001-03-01 17:11:17 (GMT)
commit4f64c1358252836900bf3cd0f68c6f83a7ec4e44 (patch)
tree83f76e2e3f2cd682c276135802221ce876328572 /Lib/tokenize.py
parent1b6e6c0fd1b2aa6f83f7bb9662d65abe91768a42 (diff)
downloadcpython-4f64c1358252836900bf3cd0f68c6f83a7ec4e44.zip
cpython-4f64c1358252836900bf3cd0f68c6f83a7ec4e44.tar.gz
cpython-4f64c1358252836900bf3cd0f68c6f83a7ec4e44.tar.bz2
Better __credits__.
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 5281b28..e0e902b 100644
--- a/Lib/tokenize.py
+++ b/Lib/tokenize.py
@@ -10,7 +10,8 @@ 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."""
__author__ = 'Ka-Ping Yee <ping@lfw.org>'
-__credits__ = 'first version, 26 October 1997; patched, GvR 3/30/98'
+__credits__ = \
+ 'GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro'
import string, re
from token import *