Home
last modified time | relevance | path

Searched refs:IntStooges (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_enum.py28 class IntStooges(int, Enum): class
33 IntStooges = exc variable
229 self.assertEqual(IntStooges.CURLY.value, 2)
608 self.assertIs(IntStooges.from_bytes(b'\x00\x03', 'big'), IntStooges.MOE)
610 IntStooges.from_bytes(b'\x00\x05', 'big')
626 if isinstance(IntStooges, Exception):
627 raise IntStooges
628 test_pickle_dump_load(self.assertIs, IntStooges.CURLY)
629 test_pickle_dump_load(self.assertIs, IntStooges)