diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2023-03-27 23:26:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 23:26:16 (GMT) |
commit | f4ed2c6ae5915329e49b9f94033ef182400e29fa (patch) | |
tree | 70e3afc7594277ba666bf9bcb873d7009eba11ff /Lib/test/test_enum.py | |
parent | b838d80085b0162cc2ae7b4db5d2a9d9c6a28366 (diff) | |
download | cpython-f4ed2c6ae5915329e49b9f94033ef182400e29fa.zip cpython-f4ed2c6ae5915329e49b9f94033ef182400e29fa.tar.gz cpython-f4ed2c6ae5915329e49b9f94033ef182400e29fa.tar.bz2 |
gh-102558: [Enum] better handling of non-Enum EnumType classes (GH-103060)
Diffstat (limited to 'Lib/test/test_enum.py')
-rw-r--r-- | Lib/test/test_enum.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index 58c80e7..bea1954 100644 --- a/Lib/test/test_enum.py +++ b/Lib/test/test_enum.py @@ -1386,7 +1386,6 @@ class TestSpecial(unittest.TestCase): class Huh(MyStr, MyInt, Enum): One = 1 - def test_pickle_enum(self): if isinstance(Stooges, Exception): raise Stooges |