Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_enum.py36 class FloatStooges(float, Enum): class
41 FloatStooges = exc variable
613 h = float.hex(FloatStooges.MOE.value)
614 self.assertIs(FloatStooges.fromhex(h), FloatStooges.MOE)
615 h = float.hex(FloatStooges.MOE.value + 0.01)
617 FloatStooges.fromhex(h)
632 if isinstance(FloatStooges, Exception):
633 raise FloatStooges
634 test_pickle_dump_load(self.assertIs, FloatStooges.CURLY)
635 test_pickle_dump_load(self.assertIs, FloatStooges)