File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -355,6 +355,8 @@ def setUp(self):
355
355
is_emscripten or is_wasi ,
356
356
"musl libc issue on Emscripten/WASI, bpo-46390"
357
357
)
358
+ @unittest .skipIf (sys .platform .startswith ("netbsd" ),
359
+ "gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE" )
358
360
def test_strcoll_with_diacritic (self ):
359
361
self .assertLess (locale .strcoll ('à' , 'b' ), 0 )
360
362
@@ -364,6 +366,8 @@ def test_strcoll_with_diacritic(self):
364
366
is_emscripten or is_wasi ,
365
367
"musl libc issue on Emscripten/WASI, bpo-46390"
366
368
)
369
+ @unittest .skipIf (sys .platform .startswith ("netbsd" ),
370
+ "gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE" )
367
371
def test_strxfrm_with_diacritic (self ):
368
372
self .assertLess (locale .strxfrm ('à' ), locale .strxfrm ('b' ))
369
373
You can’t perform that action at this time.
0 commit comments