Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ce70132

Browse files
committed
Issue #25809: Skip testing platform-dependent French thousands separator
1 parent cba0053 commit ce70132

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Lib/test/test__locale.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ def accept(loc):
6767
known_numerics = {
6868
'en_US': ('.', ','),
6969
'de_DE' : (',', '.'),
70-
'fr_FR.UTF-8' : (',', ' '),
70+
# The French thousands separator may be a breaking or non-breaking space
71+
# depending on the platform, so do not test it
72+
'fr_FR' : (',', ''),
7173
'ps_AF': ('\u066b', '\u066c'),
7274
}
7375

0 commit comments

Comments
 (0)