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