gh-106762: Add news for EnumMeta.__getattr__ removal (GH-107466)

This commit is contained in:
Jacob Walls 2023-07-31 13:24:44 -04:00 committed by GitHub
parent 5eb80a61f5
commit de51dede5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -1234,6 +1234,10 @@ Removed
(Contributed by Pradyun Gedam in :gh:`95299`.)
* :mod:`enum`: Remove ``EnumMeta.__getattr__``, which is no longer needed for
enum attribute access.
(Contributed by Ethan Furman in :gh:`95083`.)
* :mod:`ftplib`: Remove the ``FTP_TLS.ssl_version`` class attribute: use the
*context* parameter instead.
(Contributed by Victor Stinner in :gh:`94172`.)

View file

@ -2752,7 +2752,7 @@ by Shin-myoung-serp.
.. section: Library
Add deprecation warning for enum ``member.member`` access (e.g.
``Color.RED.BLUE``).
``Color.RED.BLUE``). Remove ``EnumMeta.__getattr__``.
..