From 17c349400ce55b59b8c98964648fd1e791061986 Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 18 Dec 2012 01:51:36 +0100 Subject: [PATCH] accidentally removed the fast_parser=True from settings --- jedi/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/settings.py b/jedi/settings.py index d7dd54e2..789ac955 100644 --- a/jedi/settings.py +++ b/jedi/settings.py @@ -21,7 +21,7 @@ add_bracket_after_function = False # Use the fast parser. This means that reparsing is only being done if # something has been changed e.g. to a function. If this happens, only the # function is being reparsed. -fast_parser = False +fast_parser = True # This is just a debugging option. Always reparsing means that the fast parser # is basically useless. So don't use it.