https://github.com/python/cpython/commit/7ba2d78cbb2e693ea226b7f4848970dd4544d245
commit: 7ba2d78cbb2e693ea226b7f4848970dd4544d245
branch: 3.11
author: Serhiy Storchaka <[email protected]>
committer: serhiy-storchaka <[email protected]>
date: 2024-02-13T10:40:40Z
summary:

[3.11] gh-115252: Fix test_enum with -OO mode again (GH-115334) (GH-115397)

(cherry picked from commit ca3604a3e33d833ef698b44a4b82c5bc8c771fcb)

files:
M Lib/test/test_enum.py

diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py
index 0d0aa479254ff4..f37e2f7e1a6fa9 100644
--- a/Lib/test/test_enum.py
+++ b/Lib/test/test_enum.py
@@ -4497,15 +4497,15 @@ class Color(enum.Enum)
  |  value
  |\x20\x20
  |  ----------------------------------------------------------------------
- |  Methods inherited from enum.EnumType:
+ |  Static methods inherited from enum.EnumType:
  |\x20\x20
- |  __contains__(member) from enum.EnumType
+ |  __contains__(member)
  |\x20\x20
- |  __getitem__(name) from enum.EnumType
+ |  __getitem__(name)
  |\x20\x20
- |  __iter__() from enum.EnumType
+ |  __iter__()
  |\x20\x20
- |  __len__() from enum.EnumType
+ |  __len__()
  |\x20\x20
  |  ----------------------------------------------------------------------
  |  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]

Reply via email to