1
0
forked from VimPlug/jedi

Array fixes except for conversions.

This commit is contained in:
Dave Halter
2016-11-13 16:18:46 +01:00
parent 21cfe4fc21
commit b2bdfe4a28
7 changed files with 21 additions and 16 deletions

View File

@@ -671,9 +671,8 @@ def check_tuple_assignments(evaluator, types, name):
# index number is high. Therefore break if the loop is
# finished.
return set()
if lazy_context is None:
return types
return lazy_context.infer()
types = lazy_context.infer()
return types
def filter_private_variable(scope, origin_node):