﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25920	Add number formatting support for locales that use non-uniform digit grouping (e.g. India)	Binoj David	Szymon Teżewski	"When using 'en-IN' as locale (listed as valid in http://www.i18nguy.com/unicode/language-identifiers.html) 100000.00 should look like 1,00,000.00 after using intcomma. Instead 100,000.00 is displayed. 

Works as expected in locale package as below (with en_IN installed, of course):
{{{
In [1]: import locale

In [2]: locale.setlocale(locale.LC_ALL, 'en_IN')
Out[2]: 'en_IN'

In [3]: locale.format(""%.2f"", 100000.00, grouping=True)
Out[3]: '1,00,000.00'
}}}"	New feature	closed	Internationalization	1.9	Normal	fixed	en-IN		Accepted	1	0	0	0	0	0
