diff options
author | Raymond Hettinger <python@rcn.com> | 2006-12-02 02:00:39 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2006-12-02 02:00:39 (GMT) |
commit | 8a7e76bcfa4c6c778e1bf155b6c4e40f8232d86a (patch) | |
tree | bbd2fc059f2983c14fcdcb5e28d24d1bc0e71707 /Lib/tokenize.py | |
parent | f008203cb4c98329bdcfd871afc66dfa3ed4ec94 (diff) | |
download | cpython-8a7e76bcfa4c6c778e1bf155b6c4e40f8232d86a.zip cpython-8a7e76bcfa4c6c778e1bf155b6c4e40f8232d86a.tar.gz cpython-8a7e76bcfa4c6c778e1bf155b6c4e40f8232d86a.tar.bz2 |
Add name to credits (for untokenize).
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r-- | Lib/tokenize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py index ca4dbf0..5a9d08c 100644 --- a/Lib/tokenize.py +++ b/Lib/tokenize.py @@ -24,7 +24,7 @@ each time a new token is found.""" __author__ = 'Ka-Ping Yee <ping@lfw.org>' __credits__ = \ - 'GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro' + 'GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro, Raymond Hettinger' import string, re from token import * |