mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
GitOrigin-RevId: 9862d18848b3a826ba11e9c0e15e56a2c94bcc9e
5 lines
106 B
Python
5 lines
106 B
Python
import asyncio
|
|
|
|
async def async_func():
|
|
def non_async_local(x=(await asyncio.sleep(10))):
|
|
pass |