Skip this test on MacOSX: the locale support is too minimal to make

it pass.
This commit is contained in:
Jack Jansen 2002-12-30 23:02:55 +00:00
parent 66162de80d
commit 06f0cef1ca

View file

@ -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"