1
0
forked from VimPlug/jedi

usages issues.

This commit is contained in:
Dave Halter
2014-09-25 00:14:43 +02:00
parent 9ecf3774a0
commit 59225ceaa3
4 changed files with 6 additions and 16 deletions

View File

@@ -25,8 +25,7 @@ def usages(evaluator, definitions, mods):
while not stmt.parent.is_scope():
stmt = stmt.parent
# New definition, call cannot be a part of stmt
if len(call.name) == 1 and call.next is None \
and call.name in stmt.get_defined_names():
if call.next is None and call.name in stmt.get_defined_names():
# Class params are not definitions (like function params). They
# are super classes, that need to be resolved.
if not (isinstance(stmt, pr.Param) and isinstance(stmt.parent, pr.Class)):