1
0
forked from VimPlug/jedi

Fix an issue with global stmts. They caused recursionerrors when used wrong. Fixes #610.

This commit is contained in:
Dave Halter
2016-07-18 19:23:08 +02:00
parent 9eee0d6635
commit 2776af3db5
4 changed files with 44 additions and 20 deletions

View File

@@ -26,7 +26,7 @@ from jedi.evaluate.cache import memoize_default
from jedi.evaluate import imports
MAX_PARAM_SEARCHES = 10
MAX_PARAM_SEARCHES = 20
class ParamListener(object):