]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[doc] Add mentions of PEP 613 (TypeAlias) to docs (GH-22733)
authorAndre Delfino <adelfino@gmail.com>
Sat, 17 Oct 2020 02:34:01 +0000 (23:34 -0300)
committerGitHub <noreply@github.com>
Sat, 17 Oct 2020 02:34:01 +0000 (19:34 -0700)
Doc/library/typing.rst

index 5fb78bbde69b1cd73971182572ff9fd8e231180b..402dd24fde6e08ed48bdb7c599c31fc65109fd07 100644 (file)
@@ -18,7 +18,7 @@
 --------------
 
 This module provides runtime support for type hints as specified by
-:pep:`484`, :pep:`526`, :pep:`544`, :pep:`586`, :pep:`589`, and :pep:`591`.
+:pep:`484`, :pep:`526`, :pep:`544`, :pep:`586`, :pep:`589`, :pep:`591`, and :pep:`613`.
 The most fundamental support consists of the types :data:`Any`, :data:`Union`,
 :data:`Tuple`, :data:`Callable`, :class:`TypeVar`, and
 :class:`Generic`.  For full specification please see :pep:`484`.  For
@@ -500,6 +500,8 @@ These can be used as types in annotations and do not support ``[]``.
 
     Factors: TypeAlias = list[int]
 
+   See :pep:`613` for more details about explicit type aliases.
+
    .. versionadded:: 3.10
 
 Special forms