8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9c2bc1 commit 10de360Copy full SHA for 10de360
Lib/test/test_locale.py
@@ -355,6 +355,8 @@ def setUp(self):
355
is_emscripten or is_wasi,
356
"musl libc issue on Emscripten/WASI, bpo-46390"
357
)
358
+ @unittest.skipIf(sys.platform.startswith("netbsd"),
359
+ "gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE")
360
def test_strcoll_with_diacritic(self):
361
self.assertLess(locale.strcoll('à', 'b'), 0)
362
@@ -364,6 +366,8 @@ def test_strcoll_with_diacritic(self):
364
366
365
367
368
369
370
371
def test_strxfrm_with_diacritic(self):
372
self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))
373
0 commit comments