[Python-checkins] [3.11] [typing docs] Don't describe `Sized` and `Hashable` as deprecated in the 3.11 docs (#105496)

AlexWaygood webhook-mailer at python.org
Thu Jun 8 08:10:16 EDT 2023


https://github.com/python/cpython/commit/02c5513b30f31b65fab48318772f83441f426df4
commit: 02c5513b30f31b65fab48318772f83441f426df4
branch: 3.11
author: Alex Waygood <Alex.Waygood at Gmail.com>
committer: AlexWaygood <Alex.Waygood at Gmail.com>
date: 2023-06-08T13:09:52+01:00
summary:

[3.11] [typing docs] Don't describe `Sized` and `Hashable` as deprecated in the 3.11 docs (#105496)

files:
M Doc/library/typing.rst

diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 973445aff432..4f13885847c6 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -2421,7 +2421,7 @@ Corresponding to other types in :mod:`collections.abc`
 
 .. class:: Hashable
 
-   Deprecated alias to :class:`collections.abc.Hashable`.
+   Alias to :class:`collections.abc.Hashable`.
 
 .. class:: Reversible(Iterable[T_co])
 
@@ -2433,7 +2433,7 @@ Corresponding to other types in :mod:`collections.abc`
 
 .. class:: Sized
 
-   Deprecated alias to :class:`collections.abc.Sized`.
+   Alias to :class:`collections.abc.Sized`.
 
 Asynchronous programming
 """"""""""""""""""""""""



More information about the Python-checkins mailing list