https://github.com/python/cpython/commit/79d1d6de1df47b429d92573df9db9fc90abbdf39 commit: 79d1d6de1df47b429d92573df9db9fc90abbdf39 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: serhiy-storchaka <[email protected]> date: 2024-02-13T10:38:27Z summary:
[3.12] gh-115252: Fix test_enum with -OO mode again (GH-115334) (GH-115396) (cherry picked from commit ca3604a3e33d833ef698b44a4b82c5bc8c771fcb) Co-authored-by: Serhiy Storchaka <[email protected]> files: M Lib/test/test_enum.py diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index 99e291366a9dec..ec082c46d10405 100644 --- a/Lib/test/test_enum.py +++ b/Lib/test/test_enum.py @@ -4806,15 +4806,15 @@ class Color(enum.Enum) | value | | ---------------------------------------------------------------------- - | Methods inherited from enum.EnumType: + | Static methods inherited from enum.EnumType: | - | __contains__(value) from enum.EnumType + | __contains__(value) | - | __getitem__(name) from enum.EnumType + | __getitem__(name) | - | __iter__() from enum.EnumType + | __iter__() | - | __len__() from enum.EnumType + | __len__() | | ---------------------------------------------------------------------- | Readonly properties inherited from enum.EnumType: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
