1
0
forked from VimPlug/jedi

improve docstrings of evaluate

This commit is contained in:
David Halter
2013-02-05 18:21:38 +01:00
parent a14471ad48
commit 650b96dbda
3 changed files with 14 additions and 12 deletions

View File

@@ -94,7 +94,7 @@ class Script(object):
scopes = list(self._prepare_goto(path, True))
except NotFoundError:
scopes = []
scope_generator = evaluate.get_names_for_scope(
scope_generator = evaluate.get_names_of_scope(
self._parser.user_scope, self.pos)
completions = []
for scope, name_list in scope_generator: