协程——asyncio.wait()警告

问题描述

使用协程弹出警告:

DeprecationWarning: The explicit passing of coroutine objects to asyncio.wait() is deprecated since Python 3.8, and scheduled for removal in Python 3.11.
  await asyncio.wait(tasks)

原因分析:

从警告信息中得出在python3.8后直接把协程对象传给asyncio.wait()是不行的,必须封装成tasks对象传入。在python3.11后则是会报错。
协程——asyncio.wait()警告_第1张图片
由上面图片看出,在wait()中说明了在3.8之前会自动生成为Tasks对象


解决方案:

协程——asyncio.wait()警告_第2张图片

使用asyncio.create_task()创建task对象

你可能感兴趣的:(python)