[Python-checkins] r80180 - in python/branches/release26-maint: Include/pyport.h Lib/test/test_locale.py Misc/NEWS

Victor Stinner victor.stinner at haypocalc.com
Mon Apr 19 13:51:04 CEST 2010


Le dimanche 18 avril 2010 16:34:22, ronald.oussoren a écrit :
> Merged revisions 80178 via svnmerge from
> 
> ........
>   r80178 | ronald.oussoren | 2010-04-18 15:47:49 +0200 (Sun, 18 Apr 2010) |
>  2 lines
> 
>   Fix for issue #7072
> ........
> 
> 
> Modified: python/branches/release26-maint/Lib/test/test_locale.py
> ===========================================================================
> +        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 SkipTest("Locale support on MacOSX is minimal")

You replaced unittest.SkipTest by SkipTest during the backport, funny :-) I 
fixed it in r80208.

-- 
Victor Stinner
http://www.haypocalc.com/


More information about the Python-checkins mailing list