diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-14 11:31:39 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-14 11:31:39 (GMT) |
commit | 34f12d73158de5ad37c08009832d68ff7b8eeb7a (patch) | |
tree | 3a4d3f6d54480909e0fd3c8615d2ff901cbfe641 | |
parent | 357be7ccdb85257b42f63f13def43cbd55d4c9fe (diff) | |
parent | a8cadb2243759498dfc6b41c8cb29228d8b96f5d (diff) | |
download | cpython-34f12d73158de5ad37c08009832d68ff7b8eeb7a.zip cpython-34f12d73158de5ad37c08009832d68ff7b8eeb7a.tar.gz cpython-34f12d73158de5ad37c08009832d68ff7b8eeb7a.tar.bz2 |
Issue #16182: Merge test_readline from 3.5
-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 6381f23..9c895a1 100644 --- a/Lib/test/test_readline.py +++ b/Lib/test/test_readline.py @@ -203,7 +203,7 @@ print("history", ascii(readline.get_history_item(1))) self.assertIn(b"text 't\\xeb'\r\n", output) self.assertIn(b"line '[\\xefnserted]|t\\xeb[after]'\r\n", output) self.assertIn(b"indexes 11 13\r\n", output) - if not is_editline: # display() hook not called under Editline + if not is_editline and hasattr(readline, "set_pre_input_hook"): self.assertIn(b"substitution 't\\xeb'\r\n", output) self.assertIn(b"matches ['t\\xebnt', 't\\xebxt']\r\n", output) expected = br"'[\xefnserted]|t\xebxt[after]'" |