[3.12] gh-106762: Add news for EnumMeta.__getattr__ removal (GH-107466) (GH-107509)

gh-106762: Add news for `EnumMeta.__getattr__` removal (GH-107466)
(cherry picked from commit de51dede5b)

Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
This commit is contained in:
Miss Islington (bot) 2023-07-31 11:33:32 -07:00 committed by GitHub
parent 5f7862dc1f
commit 0fbe69fc41
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__``.
..