From: Ka-Ping Yee Date: Thu, 1 Mar 2001 17:11:17 +0000 (+0000) Subject: Better __credits__. X-Git-Tag: v2.1b1~67 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f64c1358252836900bf3cd0f68c6f83a7ec4e44;p=python Better __credits__. --- 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 ' -__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 *