Commit ce70132b authored by Martin Panter's avatar Martin Panter

Issue #25809: Skip testing platform-dependent French thousands separator

parent cba0053b
......@@ -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'),
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment