Move tokenize.py and token.py to the python folder.

This commit is contained in:
Dave Halter
2017-07-09 00:06:14 +02:00
parent ee1184e7c4
commit c28ec5f182
9 changed files with 15 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
from parso.python import tree
from parso import tokenize
from parso.token import (DEDENT, INDENT, ENDMARKER, NEWLINE, NUMBER,
STRING, tok_name)
from parso.python import tokenize
from parso.python.token import (DEDENT, INDENT, ENDMARKER, NEWLINE, NUMBER,
STRING, tok_name)
from parso.parser import BaseParser
from parso.pgen2.parse import token_to_ilabel