summaryrefslogtreecommitdiffstats
path: root/Doc/library/typing.rst
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2021-10-20 15:15:59 (GMT)
committerGitHub <noreply@github.com>2021-10-20 15:15:59 (GMT)
commitd9e1dae35ac20acfeb2509b0dea4c3943693e79d (patch)
treeb1d996f61a306165f3699421ad841542dcc4e601 /Doc/library/typing.rst
parent6ef4507c74106884e6c8847f08d004511c4f1197 (diff)
downloadcpython-d9e1dae35ac20acfeb2509b0dea4c3943693e79d.zip
cpython-d9e1dae35ac20acfeb2509b0dea4c3943693e79d.tar.gz
cpython-d9e1dae35ac20acfeb2509b0dea4c3943693e79d.tar.bz2
Add PEPs 593 & 647 to list of PEPs at top of typing docs (GH-29097)
Diffstat (limited to 'Doc/library/typing.rst')
-rw-r--r--Doc/library/typing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index bc6130a..e5e7941 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -19,7 +19,7 @@
This module provides runtime support for type hints as specified by
:pep:`484`, :pep:`526`, :pep:`544`, :pep:`586`, :pep:`589`, :pep:`591`,
-:pep:`612` and :pep:`613`.
+:pep:`593`, :pep:`612`, :pep:`613` and :pep:`647`.
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