當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python typing.Coroutine用法及代碼示例


用法:

class typing.Coroutine(Awaitable[V_co], Generic[T_co, T_contra, V_co])

collections.abc.Coroutine 的通用版本。類型變量的方差和順序對應於Generator,例如:

from collections.abc import Coroutine
c: Coroutine[list[str], str, int]  # Some coroutine defined elsewhere
x = c.send('hi')                   # Inferred type of 'x' is list[str]
async def bar() -> None:
    y = await c                    # Inferred type of 'y' is int

版本 3.5.3 中的新函數。

自 3.9 版後已棄用:collections.abc.Coroutine現在支持[].看PEP 585通用別名類型.

相關用法


注:本文由純淨天空篩選整理自python.org大神的英文原創作品 typing.Coroutine。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。