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 vstinner
Recipients cstratak, serhiy.storchaka, skrah, vstinner
Date 2018-01-10.16:59:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515603551.78.0.467229070634.issue31900@psf.upfronthosting.co.za>
In-reply-to
Content
I completed my change. It now fixes locale.localeconv(), str.format() for int, float, complex and decimal.Decimal:

vstinner@apu$ ./python lc_numeric.py 
LC_CTYPE: ('fr_FR', 'ISO8859-1')
LC_NUMERIC: ('es_MX', 'UTF-8')
decimal_point: '.'
thousands_sep: '\u2009'
grouping: [3, 3, 0]
int.__format__: '1\u2009234'
float.__format__: '1\u2009234'
complex.__format__: '1\u2009234+0j'
Decimal.__format__: '1\u2009234'
History
Date User Action Args
2018-01-10 16:59:11vstinnersetrecipients: + vstinner, skrah, serhiy.storchaka, cstratak
2018-01-10 16:59:11vstinnersetmessageid: <1515603551.78.0.467229070634.issue31900@psf.upfronthosting.co.za>
2018-01-10 16:59:11vstinnerlinkissue31900 messages
2018-01-10 16:59:11vstinnercreate