1
0
forked from VimPlug/jedi

the whole import thing seems to be working

This commit is contained in:
Dave Halter
2013-12-24 16:28:28 +01:00
parent 7bf6ff768c
commit cf4b2c4557
4 changed files with 8 additions and 7 deletions

View File

@@ -81,9 +81,9 @@ from jedi import debug
from jedi.evaluate import representation as er
from jedi.evaluate import builtin
from jedi.evaluate import imports
import recursion
import docstrings
import dynamic
from jedi import recursion
from jedi import docstrings
from jedi import dynamic
def get_defined_names_for_position(scope, position=None, start_scope=None):

View File

@@ -22,9 +22,9 @@ from jedi import debug
from jedi import common
from jedi.evaluate import imports
from jedi.evaluate import builtin
import recursion
import docstrings
import dynamic
from jedi import recursion
from jedi import docstrings
from jedi import dynamic
class Executable(pr.IsScope):

View File

@@ -16,7 +16,6 @@ Apart from those classes there's a ``sys.path`` fetching function, as well as
from __future__ import with_statement
import re
import tokenizer as tokenize
import sys
import os
from ast import literal_eval
@@ -24,6 +23,7 @@ from ast import literal_eval
from jedi._compatibility import exec_function, unicode
from jedi import cache
from jedi.parser import representation as pr
from jedi.parser import tokenizer as tokenize
from jedi.parser import fast
from jedi import debug
from jedi import common

View File

@@ -8,6 +8,7 @@ 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 *