Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c01d16 + f187a02 commit d9c665bCopy full SHA for d9c665b
1 file changed
Lib/test/test_locale.py
@@ -1,4 +1,5 @@
1
from test.support import run_unittest, verbose
2
+from platform import linux_distribution
3
import unittest
4
import locale
5
import sys
@@ -391,6 +392,8 @@ def test_setlocale_category(self):
391
392
# crasher from bug #7419
393
self.assertRaises(locale.Error, locale.setlocale, 12345)
394
395
+ @unittest.skipIf(linux_distribution()[0] == 'Fedora', "Fedora setlocale() "
396
+ "bug: https://bugzilla.redhat.com/show_bug.cgi?id=726536")
397
def test_getsetlocale_issue1813(self):
398
# Issue #1813: setting and getting the locale under a Turkish locale
399
oldlocale = locale.setlocale(locale.LC_CTYPE)
0 commit comments