diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-06-07 06:50:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 06:50:31 (GMT) |
commit | 039f30380b7bedafc99293436880a1edcf27f1ec (patch) | |
tree | d9359a4daafcb4088aa00f499fb2aa5ae49093e9 /Doc/library | |
parent | 5e4c46f02951b979854121adc4b628e57467ac95 (diff) | |
download | cpython-039f30380b7bedafc99293436880a1edcf27f1ec.zip cpython-039f30380b7bedafc99293436880a1edcf27f1ec.tar.gz cpython-039f30380b7bedafc99293436880a1edcf27f1ec.tar.bz2 |
[3.11] typing docs: Make the PEPs list an expandable section, hidden by default (GH-105353) (#105421)
typing docs: Make the PEPs list an expandable section, hidden by default (GH-105353)
(cherry picked from commit d7645124f56c8832a7630a7f76c99e2630e685d7)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/typing.rst | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 6d398ea..a7c5143 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -59,7 +59,12 @@ Relevant PEPs Since the initial introduction of type hints in :pep:`484` and :pep:`483`, a number of PEPs have modified and enhanced Python's framework for type -annotations. These include: +annotations: + +.. raw:: html + + <details> + <summary><a style="cursor:pointer;">The full list of PEPs</a></summary> * :pep:`526`: Syntax for Variable Annotations *Introducing* syntax for annotating variables outside of function @@ -99,6 +104,11 @@ annotations. These include: * :pep:`681`: Data Class Transforms *Introducing* the :func:`@dataclass_transform<dataclass_transform>` decorator +.. raw:: html + + </details> + <br> + .. _type-aliases: Type aliases |