diff options
-rw-r--r-- | Lib/test/test_locale.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index 46cbee2..d15bd28 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" |