Files
Pyarmor-Static-Unpack-1shot/tests/input/loop_try_except.py

20 lines
313 B
Python

async def myFunc():
async for b in c:
try:
STUFF
except MyException:
running = False
for b in c:
stuff
try:
STUFF
except MyException:
running = False
while a:
stuff
try:
STUFF
except MyException:
running = False