1
0
forked from VimPlug/jedi

keyword statement not includes globals

This commit is contained in:
Dave Halter
2014-03-05 00:44:19 +01:00
parent f4b235a35d
commit 2322edff8f
3 changed files with 12 additions and 18 deletions

View File

@@ -185,9 +185,9 @@ class NameFinder(object):
types = []
if stmt.is_global():
# global keyword handling.
for token_name in stmt._token_list[1:]:
for token_name in stmt._token_list:
if isinstance(token_name, pr.Name):
return evaluator.find_types(stmt.parent, str(token_name))
return evaluator.find_types(stmt.parent.parent, str(token_name))
else:
# Remove the statement docstr stuff for now, that has to be
# implemented with the evaluator class.