1
0
forked from VimPlug/jedi

merged module_cache into parser_cache

This commit is contained in:
David Halter
2013-01-11 23:19:22 +01:00
parent 21ae8e4266
commit 2efb93273a
5 changed files with 19 additions and 23 deletions

View File

@@ -376,7 +376,7 @@ class Script(object):
return None, 0
try:
parser = cache.module_cache[self.source_path].parser
parser = cache.parser_cache[self.source_path].parser
except KeyError:
return None, 0
part_parser = self._module.get_part_parser()