forked from VimPlug/jedi
move recursion.py to evaluate folder
This commit is contained in:
@@ -3,8 +3,6 @@ The :mod:`api_classes` module contains the return classes of the API. These
|
|||||||
classes are the much bigger part of the whole API, because they contain the
|
classes are the much bigger part of the whole API, because they contain the
|
||||||
interesting information about completion and goto operations.
|
interesting information about completion and goto operations.
|
||||||
"""
|
"""
|
||||||
from __future__ import with_statement
|
|
||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
import functools
|
import functools
|
||||||
|
|
||||||
@@ -16,7 +14,6 @@ from jedi import cache
|
|||||||
from jedi.evaluate import representation as er
|
from jedi.evaluate import representation as er
|
||||||
from jedi.evaluate import imports
|
from jedi.evaluate import imports
|
||||||
from jedi import keywords
|
from jedi import keywords
|
||||||
import recursion
|
|
||||||
import dynamic
|
import dynamic
|
||||||
|
|
||||||
|
|
||||||
@@ -27,7 +24,7 @@ def _clear_caches():
|
|||||||
"""
|
"""
|
||||||
cache.clear_caches()
|
cache.clear_caches()
|
||||||
dynamic.search_param_cache.clear()
|
dynamic.search_param_cache.clear()
|
||||||
recursion.ExecutionRecursionDecorator.reset()
|
#recursion.ExecutionRecursionDecorator.reset()
|
||||||
|
|
||||||
evaluate.follow_statement.reset()
|
evaluate.follow_statement.reset()
|
||||||
|
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ from jedi import debug
|
|||||||
from jedi.evaluate import representation as er
|
from jedi.evaluate import representation as er
|
||||||
from jedi.evaluate import builtin
|
from jedi.evaluate import builtin
|
||||||
from jedi.evaluate import imports
|
from jedi.evaluate import imports
|
||||||
from jedi import recursion
|
from jedi.evaluate import recursion
|
||||||
from jedi import docstrings
|
from jedi import docstrings
|
||||||
from jedi import dynamic
|
from jedi import dynamic
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ from jedi import debug
|
|||||||
from jedi import common
|
from jedi import common
|
||||||
from jedi.evaluate import imports
|
from jedi.evaluate import imports
|
||||||
from jedi.evaluate import builtin
|
from jedi.evaluate import builtin
|
||||||
from jedi import recursion
|
from jedi.evaluate import recursion
|
||||||
from jedi import docstrings
|
from jedi import docstrings
|
||||||
from jedi import dynamic
|
from jedi import dynamic
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user