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