1
0
forked from VimPlug/jedi

remove old way of using a separate decorator for search param memoization, use the default one

This commit is contained in:
Dave Halter
2013-12-26 02:31:18 +01:00
parent 8f564a301f
commit 84c2be9f58
2 changed files with 3 additions and 22 deletions

View File

@@ -14,7 +14,6 @@ from jedi import cache
from jedi.evaluate import representation as er
from jedi.evaluate import imports
from jedi import keywords
from jedi.evaluate import dynamic
def clear_caches():
@@ -23,7 +22,6 @@ def clear_caches():
be deleted is the module cache.
"""
cache.clear_caches()
dynamic.search_param_cache.clear()
def _clear_caches_after_call(func):