diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2024-04-09 18:31:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 18:31:07 (GMT) |
commit | e5521bcca916c63866f0aa1c4dfb3a315d6ada73 (patch) | |
tree | 235bc413efdfeb14c807e42c96541282e3434387 /Misc | |
parent | d5f1139c79525b4e7e4e8ad8c3e5fb831bbc3f28 (diff) | |
download | cpython-e5521bcca916c63866f0aa1c4dfb3a315d6ada73.zip cpython-e5521bcca916c63866f0aa1c4dfb3a315d6ada73.tar.gz cpython-e5521bcca916c63866f0aa1c4dfb3a315d6ada73.tar.bz2 |
gh-117663: [Enum] fix _simple_enum's detection of aliases (GH-117664)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-04-08-19-12-26.gh-issue-117663.CPfc_p.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-04-08-19-12-26.gh-issue-117663.CPfc_p.rst b/Misc/NEWS.d/next/Library/2024-04-08-19-12-26.gh-issue-117663.CPfc_p.rst new file mode 100644 index 0000000..2c7a522 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-04-08-19-12-26.gh-issue-117663.CPfc_p.rst @@ -0,0 +1,2 @@ +Fix ``_simple_enum`` to detect aliases when multiple arguments are present +but only one is the member value. |