1
0
forked from VimPlug/jedi

sys_path stuff has its own module, now.

This commit is contained in:
Dave Halter
2014-01-05 13:07:14 +01:00
parent 40c7949d20
commit 9523e70a71
4 changed files with 128 additions and 124 deletions

View File

@@ -36,7 +36,7 @@ from jedi import common
from jedi import debug
from jedi.parser import Parser
from jedi.parser import fast
from jedi import modules
from jedi.evaluate.sys_path import get_sys_path
from jedi import cache
@@ -70,7 +70,7 @@ class BuiltinModule(object):
def __init__(self, path=None, name=None, sys_path=None):
if sys_path is None:
sys_path = modules.get_sys_path()
sys_path = get_sys_path()
self.sys_path = list(sys_path)
if not name: