Add issue 'positional argument follows keyword argument unpacking'.

This commit is contained in:
Dave Halter
2017-07-25 01:54:25 +02:00
parent d54d7752d4
commit babd7fca92
2 changed files with 40 additions and 18 deletions

View File

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