1
0
forked from VimPlug/jedi

reenable check_user_statement in parser, that did the whole user names calculation

This commit is contained in:
Dave Halter
2014-01-17 02:48:00 +01:00
parent b30a186f8f
commit 19b0e1d5b6
3 changed files with 16 additions and 3 deletions

View File

@@ -195,8 +195,8 @@ class UserContextParser(object):
parser = Parser(self._source, self._path, self._position, no_docstr=self._no_docstr)
else:
parser = FastParser(self._source, self._path, self._position)
# Don't pickle that module, because the main module is changing quickly
cache.save_parser(self._path, None, parser, pickling=False)
# Don't pickle that module, because the main module is changing quickly
cache.save_parser(self._path, None, parser, pickling=False)
return parser
@cache.underscore_memoization