Add issue 'dict unpacking cannot be used in dict comprehension'

This commit is contained in:
Dave Halter
2017-07-23 23:47:57 +02:00
parent 915b00dab7
commit c2ab9a9e25
2 changed files with 10 additions and 0 deletions

View File

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