From: Ka-Ping Yee Date: Thu, 1 Mar 2001 13:56:40 +0000 (+0000) Subject: Add __author__ and __credits__ variables. X-Git-Tag: v2.1b1~69 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=244c593598af4db19e410032fb10793617a895ce;p=thirdparty%2FPython%2Fcpython.git Add __author__ and __credits__ variables. --- diff --git a/Lib/tokenize.py b/Lib/tokenize.py index 789d1305313e..5281b28c428d 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 ' +__credits__ = 'first version, 26 October 1997; patched, GvR 3/30/98' import string, re from token import *