diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-12-12 07:13:10 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-12-12 07:13:10 +0000 |
commit | 58ea9104fb379745472a4723be89b3e941b42f56 (patch) | |
tree | c740306ede6029822379135e43fd63eea346e02c | |
parent | e0ad1e191a355f411f9c16137735666b0d998327 (diff) | |
parent | 6a109365eca5ce01f708d8499840721b68f58a8f (diff) | |
download | cpython-git-58ea9104fb379745472a4723be89b3e941b42f56.tar.gz |
Issue #25809: Merge French locale test from 3.5
-rw-r--r-- | Lib/test/test__locale.py | 4 |
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'), } |