Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
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`).
  • Loading branch information
AlexWaygood committed Oct 12, 2021
commit 7491c6e7c7624d92f7345fb589289f69fa122679
2 changes: 1 addition & 1 deletion Doc/library/typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down