1
0
forked from VimPlug/jedi

Increase maximum recursion depth. Makes sense for very complicated code (completions within Jedi), since Jedi itself uses so many recursions.

This commit is contained in:
Dave Halter
2014-04-20 14:55:05 +02:00
parent 81cc50e8b5
commit 67f49da15c
2 changed files with 6 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ from jedi.evaluate import imports
# This is something like the sys.path, but only for searching params. It means
# that this is the order in which Jedi searches params.
search_param_modules = ['.']
import sys
class ParamListener(object):