From 3b8bcfc78985b952cf7e17c97713963cc9b875e8 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 13 Nov 2022 21:18:13 -0800 Subject: [PATCH] [Enum] update version TODO comment (GH-99458) (cherry picked from commit db115682bd639a2642c617f0b7d5b30cd7d7f472) Co-authored-by: Ethan Furman --- Lib/enum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/enum.py b/Lib/enum.py index 62d6e25cecc..1efddfa1a0a 100644 --- a/Lib/enum.py +++ b/Lib/enum.py @@ -414,7 +414,7 @@ def __setitem__(self, key, value): 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