Lines Matching refs:yield
20 coroutines use the ``yield from`` syntax introduced in :pep:`380`,
21 instead of the original ``yield`` syntax.
39 - ``result = await future`` or ``result = yield from future`` --
46 - ``result = await coroutine`` or ``result = yield from coroutine`` --
52 waiting for this one using :keyword:`await` or ``yield from``.
55 waiting for this one using :keyword:`await` or ``yield from``.
60 call ``await coroutine`` or ``yield from coroutine`` from another coroutine
71 the generator use :keyword:`!yield from` to call :keyword:`async
514 result = yield from f # The 'yield from' may raise
630 res = yield from shield(something())
634 res = yield from something()
639 cancelled, so the yield-from expression still raises
647 res = yield from shield(something())
690 done, pending = yield from asyncio.wait(fs)
714 result = yield from asyncio.wait_for(fut, 60.0)