summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-08 15:48:33 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-08 15:48:33 (GMT)
commit07c002573a949026c5975eec3c9ea36a4847dec9 (patch)
treec4ae3b0d423c47aff65300e4de5c2a8ed725f505 /Lib
parentd9ede872cd87b8b79b2d9fde7461cc007254f01c (diff)
downloadcpython-07c002573a949026c5975eec3c9ea36a4847dec9.zip
cpython-07c002573a949026c5975eec3c9ea36a4847dec9.tar.gz
cpython-07c002573a949026c5975eec3c9ea36a4847dec9.tar.bz2
Issue #24299: Fixed test__locale on Solaris.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test__locale.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py
index 8d1c8db..d95d3a4 100644
--- a/Lib/test/test__locale.py
+++ b/Lib/test/test__locale.py
@@ -24,7 +24,8 @@ candidate_locales = ['es_UY', 'fr_FR', 'fi_FI', 'es_CO', 'pt_PT', 'it_IT',
'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', 'ps_AF', 'en_US',
- 'es_ES.ISO8859-1', 'fr_FR.ISO8859-15', 'ru_RU.KOI8-R', 'ko_KR.eucKR']
+ 'fr_FR.ISO8859-1', 'fr_FR.UTF-8', 'fr_FR.ISO8859-15@euro',
+ 'ru_RU.KOI8-R', 'ko_KR.eucKR']
def setUpModule():
global candidate_locales
@@ -65,8 +66,8 @@ def setUpModule():
# value is not known, use '' .
known_numerics = {
'en_US': ('.', ','),
- 'fr_FR' : (',', ' '),
'de_DE' : (',', '.'),
+ 'fr_FR.UTF-8' : (',', ' '),
'ps_AF': ('\u066b', '\u066c'),
}