[issue16944] German number separators not working using format language and locale "de_DE"

Stefan Krah report at bugs.python.org
Sat Jan 12 12:39:14 CET 2013


Stefan Krah added the comment:

What is the output of this?

>>> locale.localeconv()                     
{'mon_decimal_point': ',', 'frac_digits': 2, 'p_sign_posn': 1, 'thousands_sep': '.', 'p_sep_by_space': 1, 'int_curr_symbol': 'EUR ', 'decimal_point': ',', 'mon_thousands_sep': '.', 'n_sep_by_space': 1, 'int_frac_digits': 2, 'currency_symbol': 'EUR', 'negative_sign': '-', 'mon_grouping': [3, 3, 0], 'positive_sign': '', 'n_cs_precedes': 0, 'grouping': [3, 3, 0], 'n_sign_posn': 1, 'p_cs_precedes': 0}


If 'grouping' is [], then this looks like a bug in OSX. Python gets
the values directly from the operating system.

----------
nosy: +skrah
status: open -> pending

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue16944>
_______________________________________


More information about the Python-bugs-list mailing list