mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
9 lines
359 B
Python
9 lines
359 B
Python
import asyncio
|
|
|
|
async def f():
|
|
await (await asyncio.sleep(1))
|
|
|
|
def f2():
|
|
<error descr="'await' outside async function">await</error> (<error descr="'await' outside async function">await</error> asyncio.sleep(1))
|
|
|
|
<error descr="'await' outside async function">await</error> (<error descr="'await' outside async function">await</error> asyncio.sleep(1)) |