From 95a435f94672095fc21cf142aec441db888709da Mon Sep 17 00:00:00 2001 From: David Halter Date: Wed, 26 Dec 2012 23:04:59 +0100 Subject: [PATCH] use get_in_function_call_cache again, because parsing the code is sometimes to slow --- jedi/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jedi/settings.py b/jedi/settings.py index 283f34fc..dc4bfa2e 100644 --- a/jedi/settings.py +++ b/jedi/settings.py @@ -28,9 +28,9 @@ fast_parser = True fast_parser_always_reparse = False # Use the cache (full cache) to generate get_in_function_call's. This may fail -# with multiline docstrings (likely) and other complicated changes to the fail -# (unlikely). The goal is to move away from it by making the rest faster. -use_get_in_function_call_cache = False +# with multiline docstrings (likely) and other complicated changes (unlikely). +# The goal is to move away from it by making the rest faster. +use_get_in_function_call_cache = True # ---------------- # dynamic stuff