1
0
forked from VimPlug/jedi

scan_array_for_pos -> search_function_call, which makes much more sense

This commit is contained in:
David Halter
2013-01-07 14:11:45 +01:00
parent d35cb1898d
commit 082db3fdbd
2 changed files with 7 additions and 9 deletions

View File

@@ -361,7 +361,7 @@ class Script(object):
return None, 0
ass = helpers.fast_parent_copy(user_stmt.get_assignment_calls())
call, index, stop = helpers.scan_array_for_pos(ass, self.pos, True)
call, index, stop = helpers.search_function_call(ass, self.pos)
return call, index
def check_cache():