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.
1 parent 6260b6a commit 0660d22Copy full SHA for 0660d22
Lib/test/test_locale.py
@@ -345,8 +345,7 @@ def setUp(self):
345
enc = codecs.lookup(locale.getencoding() or 'ascii').name
346
if enc not in ('utf-8', 'iso8859-1', 'cp1252'):
347
raise unittest.SkipTest('encoding not suitable')
348
- if enc != 'iso8859-1' and (sys.platform == 'darwin' or is_android or
349
- sys.platform.startswith('freebsd')):
+ if enc != 'iso8859-1' and is_android:
350
raise unittest.SkipTest('wcscoll/wcsxfrm have known bugs')
351
BaseLocalizedTest.setUp(self)
352
0 commit comments