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.

作者 vstinner
收信人 cstratak, serhiy.storchaka, skrah, vstinner
日期 2018-01-10.16:59:11
SpamBayes Score -1.0
Marked as misclassified
Message-id <1515603551.78.0.467229070634.issue31900@psf.upfronthosting.co.za>
In-reply-to
内容
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'
历史
日期 用户 动作 参数
2018-01-10 16:59:11vstinner修改recipients: + vstinner, skrah, serhiy.storchaka, cstratak
2018-01-10 16:59:11vstinner修改messageid: <1515603551.78.0.467229070634.issue31900@psf.upfronthosting.co.za>
2018-01-10 16:59:11vstinner链接issue31900 messages
2018-01-10 16:59:11vstinner创建