diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-14 11:29:31 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-14 11:29:31 (GMT) |
commit | a8cadb2243759498dfc6b41c8cb29228d8b96f5d (patch) | |
tree | fa685a9cf1251385688a922c45fca8bc51e0023a | |
parent | f85bce74db9198498f394cf3b12e3c9edab9fc09 (diff) | |
download | cpython-a8cadb2243759498dfc6b41c8cb29228d8b96f5d.zip cpython-a8cadb2243759498dfc6b41c8cb29228d8b96f5d.tar.gz cpython-a8cadb2243759498dfc6b41c8cb29228d8b96f5d.tar.bz2 |
Issue #16182: One more check for set_pre_input_hook()
-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 b59b6b0..8c2ad85 100644 --- a/Lib/test/test_readline.py +++ b/Lib/test/test_readline.py @@ -188,7 +188,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]'" |