mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
Skip this test on MacOSX: the locale support is too minimal to make
it pass.
This commit is contained in:
parent
66162de80d
commit
06f0cef1ca
1 changed files with 3 additions and 1 deletions
|
|
@ -1,7 +1,9 @@
|
|||
from test.test_support import verbose
|
||||
from test.test_support import verbose, TestSkipped
|
||||
import locale
|
||||
import sys
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
raise TestSkipped("Locale support on MacOSX is minimal and cannot be tested")
|
||||
oldlocale = locale.setlocale(locale.LC_NUMERIC)
|
||||
|
||||
tloc = "en_US"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue