Lines Matching refs:yield
82 yield from fut
95 the same thread. But when the task uses ``yield from``, the task is suspended
269 yield from bug()
296 should be chained explicitly with ``yield from``. Otherwise, the execution is
306 yield from asyncio.sleep(3.0)
311 yield from asyncio.sleep(1.0)
323 yield from asyncio.sleep(2.0)
355 To fix the example, tasks must be marked with ``yield from``::
359 yield from asyncio.ensure_future(create())
360 yield from asyncio.ensure_future(write())
361 yield from asyncio.ensure_future(close())
362 yield from asyncio.sleep(2.0)
369 yield from create()
370 yield from write()
371 yield from close()
372 yield from asyncio.sleep(2.0)