1
0
forked from VimPlug/jedi

remove is_goto parameters from NameFinder - yay, finally reached a first longtime goal

This commit is contained in:
Dave Halter
2014-01-07 00:24:57 +01:00
parent d38c4f7482
commit a66589161d
2 changed files with 3 additions and 3 deletions

View File

@@ -191,7 +191,7 @@ class Evaluator(object):
f = finder.NameFinder(self, scope, name_str, position)
scopes = f.scopes(search_global)
if is_goto:
return f.filter_name(scopes, is_goto=is_goto)
return f.filter_name(scopes)
return f.find(scopes, resolve_decorator)
@memoize_default(default=(), evaluator_is_first_arg=True)