1
0
forked from VimPlug/jedi

Fix wrong imports

- "from _compatibility import ..." (not in circular imports)
- "from jedi import builtin" (one of circular imports)
- "api_classes = api.api_classes"
  ("from jedi import api_classes" is not supported)
This commit is contained in:
Takafumi Arakaki
2013-03-16 21:03:34 +01:00
parent 07ba6658dd
commit f5fee5f0df
6 changed files with 6 additions and 7 deletions

View File

@@ -15,11 +15,11 @@ 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 _compatibility import next, StringIO
import tokenize
import keyword
from jedi._compatibility import next, StringIO
from jedi import debug
from jedi import common
from jedi import parsing_representation as pr