Last issue around expr_stmt.

This commit is contained in:
Dave Halter
2017-07-27 00:09:38 +02:00
parent 8071580a4c
commit 637e557486
2 changed files with 10 additions and 2 deletions

View File

@@ -100,6 +100,10 @@ def test_indentation_errors(code, positions):
'f(x=2, y)',
'f(**x, *y)',
'f(**x, y=3, z)',
'a, b += 3',
'(a, b) += 3',
'[a, b] += 3',
'[a, 1] += 3',
# All assignment tests
'lambda a: 1 = 1',
'[x for x in y] = 1',