view tests/test_parse_files/test_async_with.py @ 91:859d44f143b8

Implement Bytes in the AST.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 25 Jun 2016 02:08:50 +0100
parents 7ac23f4336b1
children
line wrap: on
line source

async def b():
    async with a:
        pass
    async with a() as b, c:
        pass