Skip to content

Commit ca3604a

Browse files
gh-115252: Fix test_enum with -OO mode again (GH-115334)
1 parent d823c23 commit ca3604a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Lib/test/test_enum.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4905,15 +4905,15 @@ class Color(enum.Enum)
49054905
| value
49064906
|
49074907
| ----------------------------------------------------------------------
4908-
| Methods inherited from enum.EnumType:
4908+
| Static methods inherited from enum.EnumType:
49094909
|
4910-
| __contains__(value) from enum.EnumType
4910+
| __contains__(value)
49114911
|
4912-
| __getitem__(name) from enum.EnumType
4912+
| __getitem__(name)
49134913
|
4914-
| __iter__() from enum.EnumType
4914+
| __iter__()
49154915
|
4916-
| __len__() from enum.EnumType
4916+
| __len__()
49174917
|
49184918
| ----------------------------------------------------------------------
49194919
| Readonly properties inherited from enum.EnumType:

0 commit comments

Comments
 (0)