diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2022-11-14 04:52:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 04:52:30 (GMT) |
commit | db115682bd639a2642c617f0b7d5b30cd7d7f472 (patch) | |
tree | a8b6b8896ccb4680f7cc12b840a7f4adf750dc97 /Lib | |
parent | 367f552129341796d75fc4cc40edb49405235a2b (diff) | |
download | cpython-db115682bd639a2642c617f0b7d5b30cd7d7f472.zip cpython-db115682bd639a2642c617f0b7d5b30cd7d7f472.tar.gz cpython-db115682bd639a2642c617f0b7d5b30cd7d7f472.tar.bz2 |
[Enum] update version TODO comment (GH-99458)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/enum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/enum.py b/Lib/enum.py index f6c34ea..a04aa79 100644 --- a/Lib/enum.py +++ b/Lib/enum.py @@ -420,7 +420,7 @@ class _EnumDict(dict): value = value.value elif _is_descriptor(value): pass - # TODO: uncomment next three lines in 3.12 + # TODO: uncomment next three lines in 3.13 # elif _is_internal_class(self._cls_name, value): # # do nothing, name will be a normal attribute # pass |