From: Martin Panter Date: Sat, 12 Dec 2015 06:53:34 +0000 (+0000) Subject: Issue #25809: Skip testing platform-dependent French thousands separator X-Git-Tag: v3.6.0a1~924^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a109365eca5ce01f708d8499840721b68f58a8f;p=python Issue #25809: Skip testing platform-dependent French thousands separator --- 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'), }