1
0
forked from VimPlug/jedi

first steps to world domination -> removal of the hackish sys.path modifications

This commit is contained in:
Dave Halter
2013-12-24 16:22:48 +01:00
parent 4e68856cc4
commit 7bf6ff768c
6 changed files with 6 additions and 14 deletions

View File

@@ -36,14 +36,6 @@ good text editor, while still having very good IDE features for Python.
__version__ = 0, 7, 1, 'alpha1'
import sys
# python imports are hell sometimes. Especially the combination of relative
# imports and circular imports... Just avoid it:
sys.path.insert(0, __path__[0])
from .api import Script, Interpreter, NotFoundError, set_debug_function
from .api import preload_module, defined_names
from . import settings
sys.path.pop(0)