Files
openide/python/testData/quickFixes/PyAsyncCallQuickFixTest/addYieldFromBeforeCall_after.py
2018-06-07 20:17:02 +03:00

14 lines
165 B
Python

import asyncio
@asyncio.coroutine
def bar():
yield from asyncio.sleep(2)
return "hey"
@asyncio.coroutine
def foo():
yield from bar()
return True