1
0
forked from VimPlug/jedi

Remove the module attribute from the parser.

This commit is contained in:
Dave Halter
2017-03-18 03:53:34 +01:00
parent d0b6d41e99
commit 0f66a3c7a8
11 changed files with 21 additions and 20 deletions

View File

@@ -123,7 +123,7 @@ def parse(grammar, path):
def _load_module(evaluator, path, python_object):
module = parse(evaluator.grammar, path).module
module = parse(evaluator.grammar, path).get_root_node()
python_module = inspect.getmodule(python_object)
evaluator.modules[python_module.__name__] = module