Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Doc/whatsnew/3.12.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`.)
Expand Down
2 changes: 1 addition & 1 deletion Misc/NEWS.d/3.12.0a1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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__``.

..

Expand Down