John M. Kuhn
John M. Kuhn
32 bit
``` julia> Sys.WORD_SIZE 32 julia> fmt("f", 1234567890123456.0) ERROR: InexactError: trunc(Int32, 1.234567890123456e15) Stacktrace: [1] trunc at ./float.jl:682 [inlined] [2] trunc at ./float.jl:359 [inlined] [3] _pfmt_f(::Base.GenericIOBuffer{Array{UInt8,1}}, ::FormatSpec, ::Float64) at /root/.julia/packages/Formatting/njXsn/src/fmtcore.jl:176 [4] printfmt(::Base.GenericIOBuffer{Array{UInt8,1}},...
``` julia> s = "123456789" "123456789" julia> printfmtln("{}--{:6.6s}", s, s) 123456789--123456789 ``` This should produce `123456789--123456`
The following should produce an error: ``` julia> format("{}, }!", "Hello", "world") "Hello, }!" ```
Fixes #178
``` % juliaup --version Juliaup 1.17.13 % juliaup status Default Channel Version Update ------------------------------------------------------------------------------------------------------------------ 1.8 1.8.5+0.aarch64.apple.darwin14 1.10 1.10.8+0.aarch64.apple.darwin14 1.11 1.11.3+0.aarch64.apple.darwin14 dev Linked to `/Users/john.m.kuhn/opt/julia/1.12-DEV/julia/usr/bin/julia` * release 1.11.3+0.aarch64.apple.darwin14 % juliaup remove...
Fix https://github.com/JuliaMath/DecFP.jl/issues/195. Compile for macOS using clang to avoid https://github.com/JuliaPackaging/BinaryBuilder.jl/issues/1339.