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 1037665 commit f0f0566Copy full SHA for f0f0566
Lib/test/test_locale.py
@@ -350,8 +350,7 @@ def setUp(self):
350
enc = codecs.lookup(locale.getencoding() or 'ascii').name
351
if enc not in ('utf-8', 'iso8859-1', 'cp1252'):
352
raise unittest.SkipTest('encoding not suitable')
353
- if enc != 'iso8859-1' and (sys.platform == 'darwin' or is_android or
354
- sys.platform.startswith('freebsd')):
+ if enc != 'iso8859-1' and is_android:
355
raise unittest.SkipTest('wcscoll/wcsxfrm have known bugs')
356
BaseLocalizedTest.setUp(self)
357
0 commit comments