diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-21 02:19:05 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-21 02:19:05 (GMT) |
commit | 0293db69a01fb5e4044d304005615746022d0c74 (patch) | |
tree | c7f727683a99b1c43b7dc20ecf41ed0ad125a7a5 /Lib | |
parent | 4eea84946908a132375451cdd8cb7ef682791c5c (diff) | |
download | cpython-0293db69a01fb5e4044d304005615746022d0c74.zip cpython-0293db69a01fb5e4044d304005615746022d0c74.tar.gz cpython-0293db69a01fb5e4044d304005615746022d0c74.tar.bz2 |
Issue #13441: Disable temporary localeconv() tests on Solaris
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test__locale.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py index 3fadb57..8ae881d 100644 --- a/Lib/test/test__locale.py +++ b/Lib/test/test__locale.py @@ -113,6 +113,8 @@ class _LocaleTests(unittest.TestCase): nl_radixchar, li_radixchar, loc, set_locale)) + @unittest.skipIf(sys.platform == 'sunos5', + "http://bugs.python.org/issue13441") def test_float_parsing(self): # Bug #1391872: Test whether float parsing is okay on European # locales. |