刚学习到异步协程就遇到了由于python版本过高导致的代码过时问题,python3.10之前的版本报这种错误应该不是版本问题,本文帮不到你,抱歉!
我目前所发现的报错原因有以下两种:
1.
loop=asyncio.get_event_loop()
改为
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
2.由于使用 asyncio.ensure_future() ,需要传入参数以外还需要传入指定loop,如下所示:
task = asyncio.ensure_future(c, loop=loop)
由于python代码的缩进问题十分严谨,所以new_event_loop以及set_event_loop必须放在ensure_future上面
# 正确用法
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
...
task = asyncio.ensure_future(c, loop=loop)
# c是你自己创建的协程对象,我这里忽略了
# 错误用法
task = asyncio.ensure_future(c, loop=loop)
...
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
如有补充请不吝赐教!