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

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