Files
openide/python/testData/debug/test_asyncio_debugger.py
Egor Eliseev 66297780d3 PY-56120 Add tests
GitOrigin-RevId: 12b363fa88b6722f6056cb82f7f8a91cacd3336a
2022-11-14 06:32:11 +00:00

14 lines
138 B
Python

import asyncio
async def foo(y):
return y + 1
async def print_foo():
x = await foo(1)
print(x)
asyncio.run(print_foo())