diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-02-02 15:40:52 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-02-02 15:40:52 (GMT) |
commit | 03c29f90c37870d3a0a65524373acb5008fa7a11 (patch) | |
tree | 64799965087bffa0bfbb3493fb6196156d81b201 /Lib/test/test_locale.py | |
parent | 090ec3c7fccbb7d5ddc026043b84a56be011adf5 (diff) | |
download | cpython-03c29f90c37870d3a0a65524373acb5008fa7a11.zip cpython-03c29f90c37870d3a0a65524373acb5008fa7a11.tar.gz cpython-03c29f90c37870d3a0a65524373acb5008fa7a11.tar.bz2 |
Issue #1813: Revert workaround for a glibc bug on the Fedora buildbot.
Diffstat (limited to 'Lib/test/test_locale.py')
-rw-r--r-- | Lib/test/test_locale.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index 30480c1..8f7574b 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -1,5 +1,4 @@ from test.support import run_unittest, verbose -from platform import linux_distribution import unittest import locale import sys @@ -392,8 +391,6 @@ class TestMiscellaneous(unittest.TestCase): # crasher from bug #7419 self.assertRaises(locale.Error, locale.setlocale, 12345) - @unittest.skipIf(linux_distribution()[0] == 'Fedora', "Fedora setlocale() " - "bug: https://bugzilla.redhat.com/show_bug.cgi?id=726536") def test_getsetlocale_issue1813(self): # Issue #1813: setting and getting the locale under a Turkish locale oldlocale = locale.setlocale(locale.LC_CTYPE) |