You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 08:49:51 +08:00
13 lines
247 B
Python
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
|