mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
14 lines
157 B
Python
14 lines
157 B
Python
|
|
import sys
|
|
import ast
|
|
|
|
src = """
|
|
async def x():
|
|
async for x in [1,2,3]:
|
|
await y()
|
|
"""
|
|
|
|
mod = ast.parse(src)
|
|
# print(mod)
|
|
# print(ast.dump(mod))
|