summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2003-09-04 18:24:47 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2003-09-04 18:24:47 (GMT)
commitf5b93736a2eb5fb44e36379b0c998bdaae69f6ef (patch)
tree7c2ddf5f6d06fc862c0e748fe26a2ae21f6a18ce /Lib
parent6bc06eca70f4c41f01bca5f39d54ff5f71a39092 (diff)
downloadcpython-f5b93736a2eb5fb44e36379b0c998bdaae69f6ef.zip
cpython-f5b93736a2eb5fb44e36379b0c998bdaae69f6ef.tar.gz
cpython-f5b93736a2eb5fb44e36379b0c998bdaae69f6ef.tar.bz2
Patch #798145: Return correct information from nl_langinfo(RADIXCHAR).
Will backport to 2.3.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test__locale.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py
new file mode 100644
index 0000000..9c9c9d8
--- /dev/null
+++ b/Lib/test/test__locale.py
@@ -0,0 +1,34 @@
+from test.test_support import verbose, TestSkipped
+from _locale import setlocale, LC_NUMERIC, RADIXCHAR, THOUSEP, nl_langinfo
+from _locale import localeconv, Error
+
+candidate_locales = ['es_UY', 'fr_FR', 'fi_FI', 'es_CO', 'pt_PT', 'it_IT',
+ 'et_EE', 'es_PY', 'no_NO', 'nl_NL', 'lv_LV', 'el_GR', 'be_BY', 'fr_BE',
+ 'ro_RO', 'ru_UA', 'ru_RU', 'es_VE', 'ca_ES', 'se_NO', 'es_EC', 'id_ID',
+ 'ka_GE', 'es_CL', 'hu_HU', 'wa_BE', 'lt_LT', 'sl_SI', 'hr_HR', 'es_AR',
+ 'es_ES', 'oc_FR', 'gl_ES', 'bg_BG', 'is_IS', 'mk_MK', 'de_AT', 'pt_BR',
+ 'da_DK', 'nn_NO', 'cs_CZ', 'de_LU', 'es_BO', 'sq_AL', 'sk_SK', 'fr_CH',
+ 'de_DE', 'sr_YU', 'br_FR', 'nl_BE', 'sv_FI', 'pl_PL', 'fr_CA', 'fo_FO',
+ 'bs_BA', 'fr_LU', 'kl_GL', 'fa_IR', 'de_BE', 'sv_SE', 'it_CH', 'uk_UA',
+ 'eu_ES', 'vi_VN', 'af_ZA', 'nb_NO', 'en_DK', 'tg_TJ']
+
+saw_locale = 0
+for loc in candidate_locales:
+ try:
+ setlocale(LC_NUMERIC, loc)
+ except Error:
+ continue
+ if verbose:
+ print "locale %r" % loc
+ saw_locale = 1
+ nl_radixchar = nl_langinfo(RADIXCHAR)
+ li_radixchar = localeconv()['decimal_point']
+ if nl_radixchar != li_radixchar:
+ print "%r != %r" % (nl_radixchar, li_radixchar)
+ nl_radixchar = nl_langinfo(THOUSEP)
+ li_radixchar = localeconv()['thousands_sep']
+ if nl_radixchar != li_radixchar:
+ print "%r != %r" % (nl_radixchar, li_radixchar)
+if not saw_locale:
+ raise ImportError, "None of the listed locales found"
+