blob: 962c10daa87668ba6a1ccc0e37998e4279fbac06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# test the math functions that return ints, with very large results
try:
import math
except ImportError:
print("SKIP")
import sys
sys.exit()
for fun in (math.ceil, math.floor, math.trunc):
for x in (-1e25, 1e25):
print('%.3g' % fun(x))
|