summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/builtin_float_round_intbig.py
blob: c8a338eefdfa37f74c0a3adbc20f5595d66a823c (plain) (blame)
1
2
3
4
# test round() with floats that return large integers

for x in (-1e25, 1e25):
    print("%.3g" % round(x))