import asyncio @asyncio.coroutine def bug(): raise Exception("not consumed") loop = asyncio.get_event_loop() asyncio.ensure_future(bug()) loop.run_forever() ...
確定! 回上一頁