1
0
forked from VimPlug/jedi

Fix sys_path propagation for builtins load_module

This commit is contained in:
Dave Halter
2017-12-18 20:15:52 +01:00
parent aa40ef3140
commit 6780eba157
4 changed files with 9 additions and 8 deletions

View File

@@ -6,8 +6,8 @@ def get_sys_path():
return sys.path
def load_module(evaluator, path=None, name=None):
return access.load_module(evaluator, path=path, name=name)
def load_module(evaluator, **kwargs):
return access.load_module(evaluator, **kwargs)
def get_compiled_method_return(evaluator, id, attribute, *args, **kwargs):