mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 15:13:13 +07:00
9 lines
115 B
Python
9 lines
115 B
Python
async def foo(x):
|
|
y = await bar(x)
|
|
return await y
|
|
|
|
|
|
async def bar(x_new):
|
|
y = await x_new
|
|
return y
|