Lines Matching defs:sys
14 import sys
21 FLOAT_MAX = sys.float_info.max
22 FLOAT_MIN = sys.float_info.min
31 file = sys.argv[0]
477 @unittest.skipIf(sys.platform == 'win32' and platform.machine() in ('ARM', 'ARM64'),
634 from sys import float_info
797 int_too_big_for_float = 10 ** (sys.float_info.max_10_exp + 5)
970 int_too_big_for_float = 10 ** (sys.float_info.max_10_exp + 5)
1684 if sys.platform == 'darwin':
2051 smallest_subnormal = sys.float_info.min * sys.float_info.epsilon
2062 largest_normal = sys.float_info.max
2075 self.assertEqual(math.ulp(1.0), sys.float_info.epsilon)
2083 sys.float_info.min * sys.float_info.epsilon)