mirror of
https://github.com/python/cpython.git
synced 2025-09-09 02:11:51 +00:00
gh-94226: Remove the locale.format() function (#94229)
Remove the locale.format() function, deprecated in Python 3.7: use locale.format_string() instead. Remove TestFormatPatternArg test case: it is irrelevant for locale.format_string() which accepts complex formats.
This commit is contained in:
parent
44c8e68b8c
commit
cc0d5e568e
6 changed files with 58 additions and 102 deletions
|
@ -59,7 +59,7 @@ formatting numbers with group separators::
|
|||
'English_United States.1252'
|
||||
>>> conv = locale.localeconv() # get a mapping of conventions
|
||||
>>> x = 1234567.8
|
||||
>>> locale.format("%d", x, grouping=True)
|
||||
>>> locale.format_string("%d", x, grouping=True)
|
||||
'1,234,567'
|
||||
>>> locale.format_string("%s%.*f", (conv['currency_symbol'],
|
||||
... conv['frac_digits'], x), grouping=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue