mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
14 lines
161 B
Python
14 lines
161 B
Python
import asyncio
|
|
|
|
|
|
@asyncio.coroutine
|
|
def bar():
|
|
yield from asyncio.sleep(2)
|
|
return "hey"
|
|
|
|
|
|
@asyncio.coroutine
|
|
def foo():
|
|
<caret>bar()
|
|
return True
|