Python異步IO:asyncio模塊

協程 一個協程可以: result=await future 或者 result=yield from future——這兩句將會掛起協程,直到future完成後再返回future的運行結果,或者拋出異常。 result=await coroutine 或者 result=yield from coroutine——它將等待另一個協程產生結果,或者拋出異常 @asyncio.coroutine——
相關文章
相關標籤/搜索