mirror of https://github.com/python/cpython
Issue #1813: backport changeset that reverts a glibc workaround for the
Fedora buildbot.
This commit is contained in:
parent
65de77ed9e
commit
da6db4f8b0
|
@ -1,5 +1,4 @@
|
|||
from test.test_support import run_unittest, verbose
|
||||
from platform import linux_distribution
|
||||
import unittest
|
||||
import locale
|
||||
import sys
|
||||
|
@ -397,8 +396,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.getlocale()
|
||||
|
|
Loading…
Reference in New Issue