1
0
forked from VimPlug/jedi

fixed parser change problems

This commit is contained in:
David Halter
2013-04-15 11:50:05 +04:30
parent b08390c136
commit 188ed33c4f
3 changed files with 20 additions and 13 deletions

View File

@@ -373,7 +373,6 @@ def find_name(scope, name_str, position=None, search_global=False,
comparison_func = lambda name: (name.start_pos)
for nscope, name_list in scope_generator:
print nscope, name_list
break_scopes = []
# here is the position stuff happening (sorting of variables)
for name in sorted(name_list, key=comparison_func, reverse=True):