From: MonadChains Date: Thu, 14 Jul 2022 06:50:31 +0000 (+0200) Subject: gh-94309: Add typing.Hashable and typing.Sized for "What's New for Python 3.12" ... X-Git-Tag: v3.12.0a1~961 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b03a9e8c8a4f3f5bb7196d4825fbfdaff022756f;p=thirdparty%2FPython%2Fcpython.git gh-94309: Add typing.Hashable and typing.Sized for "What's New for Python 3.12" (GH-94729) Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> --- diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 3de80cf6a68f..c23026b436c8 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -132,6 +132,9 @@ CPython bytecode changes Deprecated ========== +* :class:`typing.Hashable` and :class:`typing.Sized` aliases for :class:`collections.abc.Hashable` + and :class:`collections.abc.Sized`. (:gh:`94309`) + Pending Removal in Python 3.13 ------------------------------