Use locale.format_string() for more than one specifier.

This commit is contained in:
Georg Brandl 2009-08-13 12:05:52 +00:00
parent 04fd324fe3
commit fb69631af7

View file

@ -61,8 +61,8 @@ formatting numbers with group separators::
>>> x = 1234567.8
>>> locale.format("%d", x, grouping=True)
'1,234,567'
>>> locale.format("%s%.*f", (conv['currency_symbol'],
... conv['frac_digits'], x), grouping=True)
>>> locale.format_string("%s%.*f", (conv['currency_symbol'],
... conv['frac_digits'], x), grouping=True)
'$1,234,567.80'