From 0219c8fd614f68eae2071d012f4204cec5c9473b Mon Sep 17 00:00:00 2001 From: David Halter Date: Sat, 12 Jan 2013 00:14:30 +0100 Subject: [PATCH] remove wrong caching of the parser --- jedi/fast_parser.py | 1 - 1 file changed, 1 deletion(-) diff --git a/jedi/fast_parser.py b/jedi/fast_parser.py index b667ea06..2b94c333 100644 --- a/jedi/fast_parser.py +++ b/jedi/fast_parser.py @@ -144,7 +144,6 @@ class CachedFastParser(type): if pi is None or isinstance(pi.parser, parsing.PyFuzzyParser): p = super(CachedFastParser, self).__call__(source, module_path, user_position) - cache.parser_cache[module_path] = p else: p = pi.parser # pi is a `cache.ParserCacheItem` p.update(source, user_position)