From: Nikita Sobolev Date: Sun, 11 Feb 2024 15:19:59 +0000 (+0300) Subject: [3.11] gh-115252: Fix `test_enum` with `-OO` mode (GH-115253) (#115279) X-Git-Tag: v3.11.9~226 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=879d8c466023b1a253ceb3c270cc56fd31b41e0b;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-115252: Fix `test_enum` with `-OO` mode (GH-115253) (#115279) (cherry picked from commit 33f56b743285f8419e92cfabe673fa165165a580) Co-authored-by: Nikita Sobolev --- diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index 8d668ac43992..0d0aa479254f 100644 --- a/Lib/test/test_enum.py +++ b/Lib/test/test_enum.py @@ -4474,7 +4474,7 @@ expected_help_output_without_docs = """\ 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__"""