https://github.com/python/cpython/commit/1b8dcdacc75caa8175f89c7e739e45d856ebf511
commit: 1b8dcdacc75caa8175f89c7e739e45d856ebf511
branch: main
author: Serhiy Storchaka <[email protected]>
committer: encukou <[email protected]>
date: 2025-09-29T17:32:38+02:00
summary:

gh-130567: Enable previously skipped locale tests on FreeBSD and macOS 
(GH-138652)

files:
M Lib/test/test_locale.py

diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py
index 01b1e754d04219..d49f78c91da1b3 100644
--- a/Lib/test/test_locale.py
+++ b/Lib/test/test_locale.py
@@ -351,8 +351,7 @@ def setUp(self):
         enc = codecs.lookup(locale.getencoding() or 'ascii').name
         if enc not in ('utf-8', 'iso8859-1', 'cp1252'):
             raise unittest.SkipTest('encoding not suitable')
-        if enc != 'iso8859-1' and (sys.platform == 'darwin' or is_android or
-                                   sys.platform.startswith('freebsd')):
+        if enc != 'iso8859-1' and is_android:
             raise unittest.SkipTest('wcscoll/wcsxfrm have known bugs')
         BaseLocalizedTest.setUp(self)
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to