Commit 78a7aeeb authored by Raymond Hettinger's avatar Raymond Hettinger

SF 633560: tokenize.__all__ needs "generate_tokens"

parent a326f47a
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment