]> granicus.if.org Git - python/commitdiff
Revert "bpo-29571: Use correct locale encoding in test_re (#149)" (#554)
authorBenjamin Peterson <benjamin@python.org>
Wed, 8 Mar 2017 06:48:09 +0000 (22:48 -0800)
committerGitHub <noreply@github.com>
Wed, 8 Mar 2017 06:48:09 +0000 (22:48 -0800)
This reverts commit ace5c0fdd9b962e6e886c29dbcea72c53f051dc4.

Lib/test/test_re.py
Misc/NEWS

index 92d2c1386de464771ce8033f37bea529d61c1190..1d7fb76c383396057f10f540b9c6ebe5ec6808bb 100644 (file)
@@ -1399,7 +1399,7 @@ class ReTests(unittest.TestCase):
 
     def test_locale_flag(self):
         import locale
-        enc = locale.getpreferredencoding(False)
+        _, enc = locale.getlocale(locale.LC_CTYPE)
         # Search non-ASCII letter
         for i in range(128, 256):
             try:
index 911bccb6661a26726e69f305936d3862d8f7c16a..a8c8ec7d58cb114187c0e1c71ece97cf8732edb0 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -911,15 +911,6 @@ Tools/Demos
 Tests
 -----
 
-- bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS.
-  Skip some tests of select.poll when running on macOS due to unresolved
-  issues with the underlying system poll function on some macOS versions.
-
-- Issue #29571: to match the behaviour of the ``re.LOCALE`` flag,
-  test_re.test_locale_flag now uses ``locale.getpreferredencoding(False)`` to
-  determine the candidate encoding for the test regex (allowing it to correctly
-  skip the test when the default locale encoding is a multi-byte encoding)
-
 - Issue #24932: Use proper command line parsing in _testembed
 
 - Issue #28950: Disallow -j0 to be combined with -T/-l in regrtest