[Python-checkins] cpython: Issue #13441: Reenable strxfrm() tests on Solaris

victor.stinner python-checkins at python.org
Mon Nov 21 18:04:05 CET 2011


http://hg.python.org/cpython/rev/d6d15fcf5eb6
changeset:   73664:d6d15fcf5eb6
user:        Victor Stinner <vstinner at wyplay.com>
date:        Mon Nov 21 18:04:30 2011 +0100
summary:
  Issue #13441: Reenable strxfrm() tests on Solaris

files:
  Lib/test/test__locale.py |  2 --
  Lib/test/test_locale.py  |  4 ----
  2 files changed, 0 insertions(+), 6 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,8 +113,6 @@
                                                 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.
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
@@ -343,8 +343,6 @@
         self.assertEqual(locale.strcoll('a', 'a'), 0)
         self.assertGreater(locale.strcoll('b', 'a'), 0)
 
-    @unittest.skipIf(sys.platform == 'sunos5',
-                     "http://bugs.python.org/issue13441")
     def test_strxfrm(self):
         self.assertLess(locale.strxfrm('a'), locale.strxfrm('b'))
 
@@ -366,8 +364,6 @@
     def test_strcoll_with_diacritic(self):
         self.assertLess(locale.strcoll('à', 'b'), 0)
 
-    @unittest.skipIf(sys.platform == 'sunos5',
-                     "http://bugs.python.org/issue13441")
     def test_strxfrm_with_diacritic(self):
         self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))
 

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


More information about the Python-checkins mailing list