]> granicus.if.org Git - python/commitdiff
Issue #25809: Skip testing platform-dependent French thousands separator
authorMartin Panter <vadmium+py@gmail.com>
Sat, 12 Dec 2015 06:53:34 +0000 (06:53 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sat, 12 Dec 2015 06:53:34 +0000 (06:53 +0000)
Lib/test/test__locale.py

index d95d3a4e0baa0083d7e701f907e962e1c2bebfbd..58f2f04fcdf935fee486ff50619703b1f7a0bca9 100644 (file)
@@ -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'),
 }