mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Issue #25809: Skip testing platform-dependent French thousands separator
This commit is contained in:
parent
a7d81270cc
commit
6a109365ec
1 changed files with 3 additions and 1 deletions
|
@ -67,7 +67,9 @@ def setUpModule():
|
||||||
known_numerics = {
|
known_numerics = {
|
||||||
'en_US': ('.', ','),
|
'en_US': ('.', ','),
|
||||||
'de_DE' : (',', '.'),
|
'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'),
|
'ps_AF': ('\u066b', '\u066c'),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue