1
0
forked from VimPlug/jedi

Fix subscriptlist unpacking in Generics

This commit is contained in:
Dave Halter
2018-08-30 00:52:22 +02:00
parent 18e6a784e8
commit 1fce0b45f4
4 changed files with 21 additions and 6 deletions

View File

@@ -503,7 +503,9 @@ def _eval_comparison_part(evaluator, context, left, operator, right):
analysis.add(context, 'type-error-operation', operator,
message % (left, right))
return ContextSet(left, right)
result = ContextSet(left, right)
debug.dbg('Used operator %s resulting in %s', result)
return result
def _remove_statements(evaluator, context, stmt, name):