From 7491c6e7c7624d92f7345fb589289f69fa122679 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Tue, 12 Oct 2021 16:50:17 +0100 Subject: [PATCH] Add 593 & 647 to list of PEPs at top of typing docs The typing docs contain a list of typing PEPs at the top of the docs, but two PEPs are omitted: PEP 593 (introducing `typing.Annotated`) and PEP 647 (introducing `typing.TypeGuard`). --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index bc6130ace4a4b0..e5e7941833bebb 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