I think this might be a bug. ```jl # Format.jl julia> pyfmt(".3g", 12.34) "12.340" # Python In: format(12.34, ".3g") Out: '12.3' ```