diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-18 15:02:38 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-18 15:02:38 (GMT) |
commit | 501aeffba3673fdce742054a5e0014dbe3ab40a7 (patch) | |
tree | b2ab154e4267e86b9768fd65ea24bbc8860755cc /Lib | |
parent | d61deca27cdef2d1e49aeb72d8556855420a77e1 (diff) | |
download | cpython-501aeffba3673fdce742054a5e0014dbe3ab40a7.zip cpython-501aeffba3673fdce742054a5e0014dbe3ab40a7.tar.gz cpython-501aeffba3673fdce742054a5e0014dbe3ab40a7.tar.bz2 |
Merged revisions 80178 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80178 | ronald.oussoren | 2010-04-18 15:47:49 +0200 (Sun, 18 Apr 2010) | 2 lines
Fix for issue #7072
........
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_locale.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index 8c17f87..9439522 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -8,7 +8,15 @@ enUS_locale = None def get_enUS_locale(): global enUS_locale - if sys.platform.startswith("win"): + if sys.platform == 'darwin': + 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") + elif sys.platform.startswith("win"): tlocs = ("En", "English") else: tlocs = ("en_US.UTF-8", "en_US.ISO8859-1", "en_US.US-ASCII", "en_US") |