Files
python-uncompyle6/test/simple_source/bug35/02_async_for.py
2020-02-06 23:54:03 -05:00

13 lines
247 B
Python

async def a(b, c):
async for b in c:
pass
# From 3.7 test_generators.py
# Bug was getting indentation correct for multiple async's
async def foo(X):
async for i in X:
pass
async for i in X:
pass
raise Done