Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_enum.py26 class IntStooges(int, Enum): class
31 IntStooges = exc variable
239 self.assertEqual(IntStooges.CURLY.value, 2)
774 self.assertIs(IntStooges.from_bytes(b'\x00\x03', 'big'), IntStooges.MOE)
776 IntStooges.from_bytes(b'\x00\x05', 'big')
792 if isinstance(IntStooges, Exception):
793 raise IntStooges
794 test_pickle_dump_load(self.assertIs, IntStooges.CURLY)
795 test_pickle_dump_load(self.assertIs, IntStooges)