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

@@ -13,8 +13,8 @@ import logging
from parso.utils import splitlines
from parso.python.parser import Parser
from parso.python.tree import EndMarker
from parso.tokenize import (tokenize_lines, NEWLINE, TokenInfo,
ENDMARKER, INDENT, DEDENT)
from parso.python.tokenize import (tokenize_lines, NEWLINE, TokenInfo,
ENDMARKER, INDENT, DEDENT)
def _get_last_line(node_or_leaf):