Issue #25809: Skip testing platform-dependent French thousands separator
This commit is contained in:
parent
33ea29772d
commit
7b9e7ed59f
|
@ -39,7 +39,9 @@ if "MSC v.1200" in sys.version:
|
|||
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.UTF-8' : ('\xd9\xab', '\xd9\xac'),
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue