From: Jack Jansen Date: Mon, 30 Dec 2002 23:02:55 +0000 (+0000) Subject: Skip this test on MacOSX: the locale support is too minimal to make X-Git-Tag: v2.3c1~2776 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06f0cef1ca6272bd0244ea6ab30b5b5c79eaeaae;p=thirdparty%2FPython%2Fcpython.git Skip this test on MacOSX: the locale support is too minimal to make it pass. --- diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index 46cbee2b53d7..d15bd283bf9e 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -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"