[Python-checkins] cpython: Issue #13441: Disable temporary localeconv() tests on Solaris

victor.stinner python-checkins at python.org
Mon Nov 21 03:16:52 CET 2011


http://hg.python.org/cpython/rev/78123afb3ea4
changeset:   73658:78123afb3ea4
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Mon Nov 21 03:19:05 2011 +0100
summary:
  Issue #13441: Disable temporary localeconv() tests on Solaris

files:
  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
--- a/Lib/test/test__locale.py
+++ b/Lib/test/test__locale.py
@@ -113,6 +113,8 @@
                                                 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.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list