ordering of variables should work now

This commit is contained in:
David Halter
2012-05-02 16:14:48 +02:00
parent 532c78b024
commit 29f05aad8f
6 changed files with 100 additions and 17 deletions

View File

@@ -189,7 +189,7 @@ def complete(source, row, column, source_path):
except IndexError:
scope_generator = evaluate.get_names_for_scope(scope)
completions = []
for name_list in scope_generator:
for dummy, name_list in scope_generator:
completions += name_list
#for c in completions:
# if isinstance(, parsing.Function):