mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
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 |