summaryrefslogtreecommitdiff
path: root/Lib/tokenize.py
diff options
context:
space:
mode:
authorKa-Ping Yee <ping@zesty.ca>2001-03-01 17:11:17 +0000
committerKa-Ping Yee <ping@zesty.ca>2001-03-01 17:11:17 +0000
commit55ab894af811a2c86747c6752dd6706a9cec5266 (patch)
treea19ae0050361b3e712ab0707cc92bf5f3d631e62 /Lib/tokenize.py
parent3141a6dfd9d065e405b9ef05419a3e0399732c2a (diff)
downloadcpython-55ab894af811a2c86747c6752dd6706a9cec5266.tar.gz
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 5281b28c42..e0e902b5a6 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 *