Add the remaining issues for arguments.

This commit is contained in:
Dave Halter
2017-07-25 02:25:06 +02:00
parent babd7fca92
commit d012353637
2 changed files with 17 additions and 7 deletions

View File

@@ -94,6 +94,9 @@ def test_indentation_errors(code, positions):
'f(lambda: 1=1)',
'f(x=1, x=2)',
'f(**x, y)',
'f(x=2, y)',
'f(**x, *y)',
'f(**x, y=3, z)',
# IndentationError
' foo',