[Python-checkins] cpython (merge 3.5 -> default): Issue #25809: Merge French locale test from 3.5

martin.panter python-checkins at python.org
Sat Dec 12 02:31:23 EST 2015


https://hg.python.org/cpython/rev/7c5c03143923
changeset:   99537:7c5c03143923
parent:      99533:8f52c9d72d9f
parent:      99534:4f24a6dc934b
user:        Martin Panter <vadmium+py at gmail.com>
date:        Sat Dec 12 07:13:10 2015 +0000
summary:
  Issue #25809: Merge French locale test from 3.5

files:
  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
--- a/Lib/test/test__locale.py
+++ b/Lib/test/test__locale.py
@@ -67,7 +67,9 @@
 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'),
 }
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list