summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-12-12 06:53:34 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-12-12 06:53:34 (GMT)
commit6a109365eca5ce01f708d8499840721b68f58a8f (patch)
tree1b5068c46ae2a74b22aac2076137595a4b0b4be5 /Lib
parenta7d81270ccb5af4a1c514f267db5295c6d313e15 (diff)
downloadcpython-6a109365eca5ce01f708d8499840721b68f58a8f.zip
cpython-6a109365eca5ce01f708d8499840721b68f58a8f.tar.gz
cpython-6a109365eca5ce01f708d8499840721b68f58a8f.tar.bz2
Issue #25809: Skip testing platform-dependent French thousands separator
Diffstat (limited to 'Lib')
-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 d95d3a4..58f2f04 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'),
}