]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
SF 633560: tokenize.__all__ needs "generate_tokens"
authorRaymond Hettinger <python@rcn.com>
Tue, 5 Nov 2002 06:06:02 +0000 (06:06 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 5 Nov 2002 06:06:02 +0000 (06:06 +0000)
Lib/tokenize.py

index 76ea7a2ef99cfb7d3eb075983ba13f14730c6c40..37ce049a79c3f15f435a1b5c88cc3560d210c31e 100644 (file)
@@ -30,7 +30,8 @@ import string, re
 from token import *
 
 import token
-__all__ = [x for x in dir(token) if x[0] != '_'] + ["COMMENT", "tokenize", "NL"]
+__all__ = [x for x in dir(token) if x[0] != '_'] + ["COMMENT", "tokenize",
+           "generate_tokens", "NL"]
 del x
 del token