Skip to content

Commit c52c864

Browse files
committed
Fix InexactError issue #102
1 parent f068523 commit c52c864

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

src/fmtcore.jl

+14-1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,19 @@ function _pfmt_i(out::IO, fs::FormatSpec, x::Integer, op::Op) where {Op}
154154
postpad == 0 || _repprint(out, fs.fill, postpad)
155155
end
156156

157+
function _truncval(v)
158+
try
159+
return trunc(Integer, v)
160+
catch e
161+
e isa InexactError || rethrow(e)
162+
end
163+
try
164+
return trunc(Int128, v)
165+
catch e
166+
e isa InexactError || rethrow(e)
167+
end
168+
trunc(BigInt, v)
169+
end
157170

158171
### print floating point numbers
159172

@@ -162,7 +175,7 @@ function _pfmt_f(out::IO, fs::FormatSpec, x::AbstractFloat)
162175
prec = fs.prec
163176
rax = round(abs(x); digits = prec)
164177
sch = _signchar(x, fs.sign)
165-
intv = trunc(Integer, rax)
178+
intv = _truncval(rax)
166179
decv = rax - intv
167180

168181
# calculate length

test/fmtspec.jl

+3
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,9 @@ end
275275
# Floating point error can upset this one (i.e. 0.99500000 or 0.994999999)
276276
@test (pyfmt(".2f", 0.995) == "1.00" || pyfmt(".2f", 0.995) == "0.99")
277277
@test pyfmt(".2f", 0.994) == "0.99"
278+
279+
# issue #102 (from Formatting.jl)
280+
@test pyfmt("15.6f", 1e20) == "100000000000000000000.000000"
278281
end
279282

280283
@testset "Format floating point (e)" begin

0 commit comments

Comments
 (0)