diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2021-06-16 01:50:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-16 01:50:59 (GMT) |
commit | 41c2a4a727d3d559632598759433e0ec1bf594f5 (patch) | |
tree | 97744d0c093754c267099125153bfdbafdd0cb28 /Lib/enum.py | |
parent | 0f99324f61d5a2edd8729be5eed6f172c892af24 (diff) | |
download | cpython-41c2a4a727d3d559632598759433e0ec1bf594f5.zip cpython-41c2a4a727d3d559632598759433e0ec1bf594f5.tar.gz cpython-41c2a4a727d3d559632598759433e0ec1bf594f5.tar.bz2 |
[3.10] bpo-44342: [Enum] improve test, add andrei kulakov to ACKS (GH-26726)
* [3.10] [Enum] improve test, add andrei kulakov to ACKS (GH-26726).
(cherry picked from commit cb2014f2077c92c35486bf0db7e646a68478a7a5)
Co-authored-by: Ethan Furman <ethan@stoneleaf.us>
Diffstat (limited to 'Lib/enum.py')
-rw-r--r-- | Lib/enum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/enum.py b/Lib/enum.py index 49c46ea..9077798 100644 --- a/Lib/enum.py +++ b/Lib/enum.py @@ -1637,7 +1637,7 @@ class verify: else: value = 'combined values of 0x%x' % missing_value raise ValueError( - 'invalid Flag %r: %s %s [use `enum.show_flag_values(value)` for details]' + 'invalid Flag %r: %s %s [use enum.show_flag_values(value) for details]' % (cls_name, alias, value) ) return enumeration |