diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-18 13:47:49 +0000 |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-18 13:47:49 +0000 |
commit | 37805e5c1f082c753f9088e48dc945afdba29779 (patch) | |
tree | 7265feba7893d8a28e683bb684b863e615d46be7 /Lib/test/test_locale.py | |
parent | cf445fced474f4df3b67ec3cb4ae6f761173d93c (diff) | |
download | cpython-git-37805e5c1f082c753f9088e48dc945afdba29779.tar.gz |
Fix for issue #7072
Diffstat (limited to 'Lib/test/test_locale.py')
-rw-r--r-- | Lib/test/test_locale.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index 451040977a..7f0f61d322 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -10,7 +10,13 @@ enUS_locale = None def get_enUS_locale(): global enUS_locale if sys.platform == 'darwin': - raise unittest.SkipTest("Locale support on MacOSX is minimal") + import os + tlocs = ("en_US.UTF-8", "en_US.ISO8859-1", "en_US") + if int(os.uname()[2].split('.')[0]) < 10: + # The locale test work fine on OSX 10.6, I (ronaldoussoren) + # haven't had time yet to verify if tests work on OSX 10.5 + # (10.4 is known to be bad) + raise unittest.SkipTest("Locale support on MacOSX is minimal") if sys.platform.startswith("win"): tlocs = ("En", "English") else: |