Mailing List Archive

CVS: python/dist/src/Lib tokenize.py,1.28,1.29
Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv32358/Lib

Modified Files:
tokenize.py
Log Message:
Cleanup x so it is not left in module

Index: tokenize.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/tokenize.py,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** tokenize.py 30 Aug 2001 20:51:58 -0000 1.28
--- tokenize.py 26 Mar 2002 16:20:26 -0000 1.29
***************
*** 34,37 ****
--- 34,38 ----
import token
__all__ = [x for x in dir(token) if x[0] != '_'] + ["COMMENT", "tokenize", "NL"]
+ del x
del token