Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 244c593

Browse files
committed
Add __author__ and __credits__ variables.
1 parent 8b58b84 commit 244c593

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/tokenize.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
designed to match the working of the Python tokenizer exactly, except that
1010
it produces COMMENT tokens for comments and gives type OP for all operators."""
1111

12-
__version__ = "Ka-Ping Yee, 26 October 1997; patched, GvR 3/30/98"
12+
__author__ = 'Ka-Ping Yee <[email protected]>'
13+
__credits__ = 'first version, 26 October 1997; patched, GvR 3/30/98'
1314

1415
import string, re
1516
from token import *

0 commit comments

Comments
 (0)