1
0
forked from VimPlug/jedi

rename parser.tokenizer -> parser.tokenize

This commit is contained in:
Dave Halter
2014-01-05 13:38:14 +01:00
parent 261f49d3e2
commit 2e65fbb00f
6 changed files with 6 additions and 10 deletions

View File

@@ -15,8 +15,6 @@ within the statement. This lowers memory usage and cpu time and reduces the
complexity of the ``Parser`` (there's another parser sitting inside
``Statement``, which produces ``Array`` and ``Call``).
"""
from __future__ import with_statement
import keyword
from jedi._compatibility import next, StringIO
@@ -24,7 +22,7 @@ from jedi import debug
from jedi import common
from jedi.parser import representation as pr
from jedi.parser import token as token_pr
from jedi.parser import tokenizer as tokenize
from jedi.parser import tokenize
class Parser(object):

View File

@@ -9,7 +9,7 @@ from jedi._compatibility import use_metaclass
from jedi import settings
from jedi.parser import Parser
from jedi.parser import representation as pr
from jedi.parser import tokenizer as tokenize
from jedi.parser import tokenize
from jedi import cache

View File

@@ -44,7 +44,7 @@ from jedi._compatibility import next, Python3Method, encoding, unicode, is_py3k
from jedi import common
from jedi import debug
from jedi import cache
from jedi.parser import tokenizer as tokenize
from jedi.parser import tokenize
class Base(object):

View File

@@ -7,8 +7,8 @@ if the indentation is not right. The fast parser of jedi however requires
Basically this is a stripped down version of the standard library module, so
you can read the documentation there.
"""
from __future__ import absolute_import
import string
import re
from token import *