From: Neal Norwitz Date: Tue, 26 Mar 2002 16:20:26 +0000 (+0000) Subject: Cleanup x so it is not left in module X-Git-Tag: v2.3c1~6325 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e98d16e8a4821efc6e268dd1c96801aee95609fa;p=python Cleanup x so it is not left in module --- diff --git a/Lib/tokenize.py b/Lib/tokenize.py index da2bcd2c0c..f7ff000d01 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