1
0
forked from VimPlug/jedi

Simplify cache_call_signatures.

This commit is contained in:
Dave Halter
2015-02-27 12:20:55 +01:00
parent ea8209d45e
commit 23fe08363d
2 changed files with 6 additions and 6 deletions

View File

@@ -509,8 +509,8 @@ class Script(object):
return []
with common.scale_speed_settings(settings.scale_call_signatures):
origins = cache.cache_call_signatures(self._evaluator, stmt, self.source,
self._pos, stmt)
origins = cache.cache_call_signatures(self._evaluator, stmt,
self.source, self._pos)
debug.speed('func_call followed')
return [classes.CallSignature(self._evaluator, o.name, stmt, call_index, key_name)