mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
7 lines
253 B
Python
7 lines
253 B
Python
import asyncio
|
|
|
|
def f(a=<error descr="'await' outside async function">await</error> asyncio.sleep(3) if True else 0):
|
|
return a
|
|
|
|
async def f2(a=<error descr="'await' outside async function">await</error> asyncio.sleep(3) if True else 0):
|
|
return a |