1
0
forked from VimPlug/jedi

Fix some array tests

This commit is contained in:
Dave Halter
2019-08-17 15:42:13 +02:00
parent c6d2aa6da2
commit 2629ff55f3
30 changed files with 252 additions and 226 deletions
+1 -5
View File
@@ -362,11 +362,7 @@ class InferenceState(object):
) or name
if stmt.type == 'lambdef':
stmt = name
return context.py__getattribute__(
name,
position=stmt.start_pos,
search_global=True, is_goto=True
)
return context.goto(name, position=stmt.start_pos)
def create_context(self, base_context, node, node_is_value=False, node_is_object=False):
def parent_scope(node):