[Python-checkins] Skip test_readline.test_nonascii() on C locale (GH-5203) (#5204)

Victor Stinner webhook-mailer at python.org
Tue Jan 16 12:27:36 EST 2018


https://github.com/python/cpython/commit/c2740e8a263e76427a8102a89f4b491a3089b2a1
commit: c2740e8a263e76427a8102a89f4b491a3089b2a1
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Victor Stinner <victor.stinner at gmail.com>
date: 2018-01-16T18:27:29+01:00
summary:

Skip test_readline.test_nonascii() on C locale (GH-5203) (#5204)

bpo-29240: On FreeBSD, if the LC_CTYPE locale is "C" or "POSIX",
writing and reading non-ASCII bytes into/from a TTY works,
but readline or ncurses ignores non-ASCII bytes on read.
(cherry picked from commit c495e799ed376af91ae2ddf6c4bcc592490fe294)

files:
M Lib/test/test_readline.py

diff --git a/Lib/test/test_readline.py b/Lib/test/test_readline.py
index 9c979652a1d..dd9d3b57fcb 100644
--- a/Lib/test/test_readline.py
+++ b/Lib/test/test_readline.py
@@ -3,6 +3,7 @@
 """
 from contextlib import ExitStack
 from errno import EIO
+import locale
 import os
 import selectors
 import subprocess
@@ -137,6 +138,13 @@ def test_auto_history_disabled(self):
         self.assertIn(b"History length: 0\r\n", output)
 
     def test_nonascii(self):
+        loc = locale.setlocale(locale.LC_CTYPE, None)
+        if loc in ('C', 'POSIX'):
+            # bpo-29240: On FreeBSD, if the LC_CTYPE locale is C or POSIX,
+            # writing and reading non-ASCII bytes into/from a TTY works, but
+            # readline or ncurses ignores non-ASCII bytes on read.
+            self.skipTest(f"the LC_CTYPE locale is {loc!r}")
+
         try:
             readline.add_history("\xEB\xEF")
         except UnicodeEncodeError as err:



More information about the Python-checkins mailing list