forked from VimPlug/jedi
the whole import thing seems to be working
This commit is contained in:
@@ -81,9 +81,9 @@ from jedi import debug
|
|||||||
from jedi.evaluate import representation as er
|
from jedi.evaluate import representation as er
|
||||||
from jedi.evaluate import builtin
|
from jedi.evaluate import builtin
|
||||||
from jedi.evaluate import imports
|
from jedi.evaluate import imports
|
||||||
import recursion
|
from jedi import recursion
|
||||||
import docstrings
|
from jedi import docstrings
|
||||||
import dynamic
|
from jedi import dynamic
|
||||||
|
|
||||||
|
|
||||||
def get_defined_names_for_position(scope, position=None, start_scope=None):
|
def get_defined_names_for_position(scope, position=None, start_scope=None):
|
||||||
|
|||||||
@@ -22,9 +22,9 @@ from jedi import debug
|
|||||||
from jedi import common
|
from jedi import common
|
||||||
from jedi.evaluate import imports
|
from jedi.evaluate import imports
|
||||||
from jedi.evaluate import builtin
|
from jedi.evaluate import builtin
|
||||||
import recursion
|
from jedi import recursion
|
||||||
import docstrings
|
from jedi import docstrings
|
||||||
import dynamic
|
from jedi import dynamic
|
||||||
|
|
||||||
|
|
||||||
class Executable(pr.IsScope):
|
class Executable(pr.IsScope):
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ Apart from those classes there's a ``sys.path`` fetching function, as well as
|
|||||||
from __future__ import with_statement
|
from __future__ import with_statement
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import tokenizer as tokenize
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
from ast import literal_eval
|
from ast import literal_eval
|
||||||
@@ -24,6 +23,7 @@ from ast import literal_eval
|
|||||||
from jedi._compatibility import exec_function, unicode
|
from jedi._compatibility import exec_function, unicode
|
||||||
from jedi import cache
|
from jedi import cache
|
||||||
from jedi.parser import representation as pr
|
from jedi.parser import representation as pr
|
||||||
|
from jedi.parser import tokenizer as tokenize
|
||||||
from jedi.parser import fast
|
from jedi.parser import fast
|
||||||
from jedi import debug
|
from jedi import debug
|
||||||
from jedi import common
|
from jedi import common
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ Basically this is a stripped down version of the standard library module, so
|
|||||||
you can read the documentation there.
|
you can read the documentation there.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from __future__ import absolute_import
|
||||||
import string
|
import string
|
||||||
import re
|
import re
|
||||||
from token import *
|
from token import *
|
||||||
|
|||||||
Reference in New Issue
Block a user