[issue17259] locale.format() rounding is not reliable for floats

2013-02-20 Thread Francis Nimick
Francis Nimick added the comment: I did end up using round - does that mean the locale.format() behavior is correct? It's not specified anywhere in the doc that I can find. -- ___ Python tracker <http://bugs.python.org/is

[issue17259] locale.format() rounding is not reliable for floats

2013-02-20 Thread Francis Nimick
New submission from Francis Nimick: Locale.format() doesn't work correctly with floating point numbers. locale.format('%.0f', 5.5) -> 6 locale.format('%.0f', 6.5) -> 6 locale.format('%.0f', 7.5) -> 8 locale.format('%.0f', 8.5) -> 8 It