Added issue: iterable unpacking cannot be used in comprehension

This commit is contained in:
Dave Halter
2017-07-23 23:22:05 +02:00
parent 33769c6243
commit 915b00dab7
2 changed files with 5 additions and 0 deletions

View File

@@ -109,6 +109,7 @@ def test_python_exception_matches(code):
('del *a, b', '3.5'),
('def x(*): pass', '3.5'),
('async def foo():\n def nofoo():[x async for x in []]', '3.6'),
('[*[] for a in [1]]', '3.5'),
]
)
def test_python_exception_matches_version(code, version):