Check all arguments for unparenthesized generator expressions

Previously only the first argument on the argument list checked
against the generator expressions, now all argumnets are controlled.
This commit is contained in:
Batuhan Taskaya
2020-05-23 16:44:24 +03:00
parent 6ecd975516
commit fe54800cdd
2 changed files with 62 additions and 53 deletions

View File

@@ -375,3 +375,15 @@ def test_repeated_kwarg():
_get_error_list("f(q=1, q=2)", version="3.9")[0].message
== "SyntaxError: keyword argument repeated: q"
)
@pytest.mark.parametrize(
'source', [
'a(a for a in b,)'
'a(a for a in b, a)',
'a(a, a for a in b)',
'a(a, b, a for a in b, c, d)',
]
)
def test_unparenthesized_genexp(source):
assert _get_error_list(source)