1
0
forked from VimPlug/jedi

Use the subprocess access to create acceses

This commit is contained in:
Dave Halter
2017-12-06 15:06:48 +01:00
parent f09ca9fc20
commit 42fb93dc01
3 changed files with 14 additions and 15 deletions

View File

@@ -27,12 +27,12 @@ def create(evaluator, obj):
def get_special_object(evaluator, identifier):
return create_from_access_path(
evaluator,
access.get_special_object(evaluator, identifier)
evaluator.compiled_subprocess.get_special_object(identifier)
)
def load_module(evaluator, path=None, name=None):
return create_from_access_path(
evaluator,
access.load_module(evaluator, path=path, name=name)
evaluator.compiled_subprocess.load_module(path=path, name=name)
)