Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
20 additions
and 2 deletions.
- +1 −1 Lib/enum.py
- +12 −0 Lib/test/test_enum.py
- +5 −1 Lib/test/test_httplib.py
- +1 −0 Misc/ACKS
- +1 −0 Misc/NEWS.d/next/Library/2020-03-29-21-32-00.bpo-40084.MCYwcv.rst
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -191,6 +191,7 @@ Gawain Bolton | ||
| Carl Friedrich Bolz-Tereick | ||
| Forest Bond | ||
| Gregory Bond | ||
| Angelin Booz | ||
| Médéric Boquien | ||
| Matias Bordese | ||
| Jonas Borgström | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -0,0 +1 @@ | ||
| Fix ``Enum.__dir__``: dir(Enum.member) now includes attributes as well as methods. |