run_forever

[Python]异步run_until_complete和run_forever

import asyncio from asyncio import Future async def f1(): print(1) await asyncio.sleep(3) print(2) return "f1" def callback(f: Future): f.get_loop().s ......
共1篇  :1/1页 首页上一页1下一页尾页