summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-12-12 06:53:34 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-12-12 06:53:34 +0000
commitce70132bc47fe5a80d2db51cb6e2695cb67e8ad3 (patch)
tree8f3125e6aefb840a81ff59fabc888398ac78c53e /Lib/test
parentcba0053bef35f2c2db583295fe16acaa863e2d3d (diff)
downloadcpython-git-ce70132bc47fe5a80d2db51cb6e2695cb67e8ad3.tar.gz
Issue #25809: Skip testing platform-dependent French thousands separator
Diffstat (limited to 'Lib/test')
-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'),
}