]> granicus.if.org Git - python/commitdiff
Better __credits__.
authorKa-Ping Yee <ping@zesty.ca>
Thu, 1 Mar 2001 17:11:17 +0000 (17:11 +0000)
committerKa-Ping Yee <ping@zesty.ca>
Thu, 1 Mar 2001 17:11:17 +0000 (17:11 +0000)
Lib/tokenize.py

index 5281b28c428d1ce7ec8386897e35b7f710241c72..e0e902b5a61432bc9d807b6bb2a27659d17ac3be 100644 (file)
@@ -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 *