summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-12-12 07:13:10 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-12-12 07:13:10 +0000
commit58ea9104fb379745472a4723be89b3e941b42f56 (patch)
treec740306ede6029822379135e43fd63eea346e02c
parente0ad1e191a355f411f9c16137735666b0d998327 (diff)
parent6a109365eca5ce01f708d8499840721b68f58a8f (diff)
downloadcpython-git-58ea9104fb379745472a4723be89b3e941b42f56.tar.gz
Issue #25809: Merge French locale test from 3.5
-rw-r--r--Lib/test/test__locale.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py
index d95d3a4e0b..58f2f04fcd 100644
--- a/Lib/test/test__locale.py
+++ b/Lib/test/test__locale.py
@@ -67,7 +67,9 @@ def setUpModule():
known_numerics = {
'en_US': ('.', ','),
'de_DE' : (',', '.'),
- 'fr_FR.UTF-8' : (',', ' '),
+ # The French thousands separator may be a breaking or non-breaking space
+ # depending on the platform, so do not test it
+ 'fr_FR' : (',', ''),
'ps_AF': ('\u066b', '\u066c'),
}