diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-08-27 03:23:11 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-08-27 03:23:11 (GMT) |
commit | c427b8d517469005d53128e9656213a3ec141890 (patch) | |
tree | 9b24326e4ad8c154f6155574e2e157648a3c5777 /Lib/test/test_readline.py | |
parent | cc9afa9b517fd66bad148f546055985ad87bc816 (diff) | |
download | cpython-c427b8d517469005d53128e9656213a3ec141890.zip cpython-c427b8d517469005d53128e9656213a3ec141890.tar.gz cpython-c427b8d517469005d53128e9656213a3ec141890.tar.bz2 |
Issue #19884: Avoid spurious output on OS X with Gnu Readline
Also adjust the test condition, because enable-meta-key was only added in
6.1, not 6.0.
Diffstat (limited to 'Lib/test/test_readline.py')
-rw-r--r-- | Lib/test/test_readline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_readline.py b/Lib/test/test_readline.py index 8c2ad85..2c73df2 100644 --- a/Lib/test/test_readline.py +++ b/Lib/test/test_readline.py @@ -111,7 +111,7 @@ class TestHistoryManipulation (unittest.TestCase): class TestReadline(unittest.TestCase): - @unittest.skipIf(readline._READLINE_VERSION < 0x0600 and not is_editline, + @unittest.skipIf(readline._READLINE_VERSION < 0x0601 and not is_editline, "not supported in this library version") def test_init(self): # Issue #19884: Ensure that the ANSI sequence "\033[1034h" is not |