[Python-checkins] typing docs: Make the PEPs list an expandable section, hidden by default (#105353)

AlexWaygood webhook-mailer at python.org
Wed Jun 7 02:37:09 EDT 2023


https://github.com/python/cpython/commit/d7645124f56c8832a7630a7f76c99e2630e685d7
commit: d7645124f56c8832a7630a7f76c99e2630e685d7
branch: main
author: Alex Waygood <Alex.Waygood at Gmail.com>
committer: AlexWaygood <Alex.Waygood at Gmail.com>
date: 2023-06-07T07:37:02+01:00
summary:

typing docs: Make the PEPs list an expandable section, hidden by default (#105353)

Co-authored-by: Hugo van Kemenade <hugovk at users.noreply.github.com>

files:
M Doc/library/typing.rst

diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 73e96db02dc5..503bef137e31 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
@@ -106,6 +111,11 @@ annotations. These include:
 * :pep:`698`: Adding an override decorator to typing
     *Introducing* the :func:`@override<override>` decorator
 
+.. raw:: html
+
+   </details>
+   <br>
+
 .. _type-aliases:
 
 Type aliases



More information about the Python-checkins mailing list