diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2022-11-13 20:52:30 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-13 20:52:30 -0800 |
commit | db115682bd639a2642c617f0b7d5b30cd7d7f472 (patch) | |
tree | a8b6b8896ccb4680f7cc12b840a7f4adf750dc97 /Lib/enum.py | |
parent | 367f552129341796d75fc4cc40edb49405235a2b (diff) | |
download | cpython-db115682bd639a2642c617f0b7d5b30cd7d7f472.tar.gz cpython-db115682bd639a2642c617f0b7d5b30cd7d7f472.zip |
[Enum] update version TODO comment (GH-99458)
Diffstat (limited to 'Lib/enum.py')
-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 f6c34ea06d2..a04aa797536 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 |