diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-03-26 16:20:26 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-03-26 16:20:26 (GMT) |
commit | e98d16e8a4821efc6e268dd1c96801aee95609fa (patch) | |
tree | 82d61a3ebdba0b5a58bb724ee2b0c877f4b5d7f6 /Lib/tokenize.py | |
parent | 4632117e3732e42cfffee2635206525d5507c7f9 (diff) | |
download | cpython-e98d16e8a4821efc6e268dd1c96801aee95609fa.zip cpython-e98d16e8a4821efc6e268dd1c96801aee95609fa.tar.gz cpython-e98d16e8a4821efc6e268dd1c96801aee95609fa.tar.bz2 |
Cleanup x so it is not left in module
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r-- | Lib/tokenize.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py index da2bcd2..f7ff000 100644 --- a/Lib/tokenize.py +++ b/Lib/tokenize.py @@ -33,6 +33,7 @@ from token import * import token __all__ = [x for x in dir(token) if x[0] != '_'] + ["COMMENT", "tokenize", "NL"] +del x del token COMMENT = N_TOKENS |