gh-94309: "What's new in Python 3.12": improve deprecation notice for typing.Hashable and typing.Sized (#112196)

This commit is contained in:
Ori Avtalion 2023-11-17 14:30:47 +02:00 committed by GitHub
parent 0ee2d77331
commit fb4cddb0cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1289,8 +1289,9 @@ Deprecated
* :mod:`typing`:
* :class:`typing.Hashable` and :class:`typing.Sized` aliases for :class:`collections.abc.Hashable`
and :class:`collections.abc.Sized`. (:gh:`94309`.)
* :class:`typing.Hashable` and :class:`typing.Sized`, aliases for
:class:`collections.abc.Hashable` and :class:`collections.abc.Sized` respectively, are
deprecated. (:gh:`94309`.)
* :class:`typing.ByteString`, deprecated since Python 3.9, now causes a
:exc:`DeprecationWarning` to be emitted when it is used.