blob: 7169b8017d8827d06038ba235467d2babca6243a (
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))
|