mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Add __author__ and __credits__ variables.
This commit is contained in:
parent
8b58b84d72
commit
244c593598
1 changed files with 2 additions and 1 deletions
|
@ -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 <ping@lfw.org>'
|
||||
__credits__ = 'first version, 26 October 1997; patched, GvR 3/30/98'
|
||||
|
||||
import string, re
|
||||
from token import *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue