[Python-checkins] Remove reference to ``Tuple`` at top of ``typing`` docs (GH-29401)

miss-islington webhook-mailer at python.org
Thu Nov 4 08:11:24 EDT 2021


https://github.com/python/cpython/commit/75ed2ce9e86a7f213fa54e6f8cbbb3ab6f25b5a2
commit: 75ed2ce9e86a7f213fa54e6f8cbbb3ab6f25b5a2
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-11-04T05:11:14-07:00
summary:

Remove reference to ``Tuple`` at top of ``typing`` docs (GH-29401)


``typing.Tuple`` has been deprecated since Python 3.9, so it makes no sense to mention it so prominently in the documentation for the ``typing`` module.
(cherry picked from commit 87032cfa3dc975d7442fd57dea2c6a56d31c911a)

Co-authored-by: Alex Waygood <Alex.Waygood at Gmail.com>

files:
M Doc/library/typing.rst

diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index db9ad1154f2f4..c59afdd5e9025 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -18,10 +18,9 @@
 --------------
 
 This module provides runtime support for type hints. The most fundamental
-support consists of the types :data:`Any`, :data:`Union`, :data:`Tuple`,
-:data:`Callable`, :class:`TypeVar`, and :class:`Generic`. For a full
-specification, please see :pep:`484`. For a simplified introduction to type
-hints, see :pep:`483`.
+support consists of the types :data:`Any`, :data:`Union`, :data:`Callable`,
+:class:`TypeVar`, and :class:`Generic`. For a full specification, please see
+:pep:`484`. For a simplified introduction to type hints, see :pep:`483`.
 
 
 The function below takes and returns a string and is annotated as follows::



More information about the Python-checkins mailing list