summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMonadChains <monadchains@gmail.com>2022-07-14 06:50:31 (GMT)
committerGitHub <noreply@github.com>2022-07-14 06:50:31 (GMT)
commitb03a9e8c8a4f3f5bb7196d4825fbfdaff022756f (patch)
treee2df394848d53085cc4799875815b423d4dac579
parent6a15f918b5a6fb5113d5332ebf27df1d5360e66c (diff)
downloadcpython-b03a9e8c8a4f3f5bb7196d4825fbfdaff022756f.zip
cpython-b03a9e8c8a4f3f5bb7196d4825fbfdaff022756f.tar.gz
cpython-b03a9e8c8a4f3f5bb7196d4825fbfdaff022756f.tar.bz2
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>
-rw-r--r--Doc/whatsnew/3.12.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index 3de80cf..c23026b 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
------------------------------