This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients eric.smith, mark, nnorwitz
Date 2008-04-05.14:35:31
SpamBayes Score 0.05686019
Marked as misclassified No
Message-id <1207406134.41.0.448138926268.issue2526@psf.upfronthosting.co.za>
In-reply-to
Content
The same issue exists with floats:
# continuing the example

>>> locale.format("%g", 12345, True)
'12,345'
>>> "{0:n}".format(12345.0)
'12345'

The same issue exists in 2.6.
History
Date User Action Args
2008-04-05 14:35:34eric.smithsetspambayes_score: 0.0568602 -> 0.05686019
recipients: + eric.smith, nnorwitz, mark
2008-04-05 14:35:34eric.smithsetspambayes_score: 0.0568602 -> 0.0568602
messageid: <1207406134.41.0.448138926268.issue2526@psf.upfronthosting.co.za>
2008-04-05 14:35:32eric.smithlinkissue2526 messages
2008-04-05 14:35:32eric.smithcreate