forked from VimPlug/jedi
Fix sys_path propagation for builtins load_module
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user