From 879d8c466023b1a253ceb3c270cc56fd31b41e0b Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Sun, 11 Feb 2024 18:19:59 +0300 Subject: [PATCH] [3.11] gh-115252: Fix `test_enum` with `-OO` mode (GH-115253) (#115279) (cherry picked from commit 33f56b743285f8419e92cfabe673fa165165a580) Co-authored-by: Nikita Sobolev --- Lib/test/test_enum.py | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index 8d668ac4399251..0d0aa479254ff4 100644 --- a/Lib/test/test_enum.py +++ b/Lib/test/test_enum.py @@ -4474,7 +4474,7 @@ class Color(enum.Enum) Help on class Color in module %s: class Color(enum.Enum) - | Color(value, names=None, *, module=None, qualname=None, type=None, start=1) + | Color(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None) |\x20\x20 | Method resolution order: | Color @@ -4483,11 +4483,11 @@ class Color(enum.Enum) |\x20\x20 | Data and other attributes defined here: |\x20\x20 - | YELLOW = + | CYAN = |\x20\x20 | MAGENTA = |\x20\x20 - | CYAN = + | YELLOW = |\x20\x20 | ---------------------------------------------------------------------- | Data descriptors inherited from enum.Enum: @@ -4497,7 +4497,18 @@ class Color(enum.Enum) | value |\x20\x20 | ---------------------------------------------------------------------- - | Data descriptors inherited from enum.EnumType: + | Methods inherited from enum.EnumType: + |\x20\x20 + | __contains__(member) from enum.EnumType + |\x20\x20 + | __getitem__(name) from enum.EnumType + |\x20\x20 + | __iter__() from enum.EnumType + |\x20\x20 + | __len__() from enum.EnumType + |\x20\x20 + | ---------------------------------------------------------------------- + | Readonly properties inherited from enum.EnumType: |\x20\x20 | __members__"""