diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 6b2a0934171a29..2f62193e65c293 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -614,6 +614,8 @@ These can be used as types in annotations and do not support ``[]``. that generate type checker errors could be vulnerable to an SQL injection attack. + .. versionadded:: 3.11 + .. data:: Never The `bottom type `_, @@ -1383,6 +1385,8 @@ These are not used in annotations. They are building blocks for creating generic tup: tuple[*Ts] # Syntax error on Python <= 3.10! tup: tuple[Unpack[Ts]] # Semantically equivalent, and backwards-compatible + .. versionadded:: 3.11 + .. class:: ParamSpec(name, *, bound=None, covariant=False, contravariant=False) Parameter specification variable. A specialized version of