1
0
forked from VimPlug/jedi

change cache_call_signatures, so that it has a well defined input.

This commit is contained in:
Dave Halter
2014-10-06 16:07:33 +02:00
parent 87574e9d2e
commit bbdb4703ec
2 changed files with 17 additions and 13 deletions

View File

@@ -545,8 +545,7 @@ class Script(object):
return []
with common.scale_speed_settings(settings.scale_call_signatures):
_callable = lambda: self._evaluator.eval_call(call)
origins = cache.cache_call_signatures(_callable, self.source,
origins = cache.cache_call_signatures(self._evaluator, call, self.source,
self._pos, user_stmt)
debug.speed('func_call followed')