Issue #24266: Cancel history search mode with Ctrl+C in Readline 7

This commit is contained in:
Martin Panter 2016-03-22 07:24:05 +00:00
parent e46487b133
commit d6990d221b
2 changed files with 6 additions and 0 deletions

View File

@ -94,6 +94,9 @@ Core and Builtins
Library
-------
- Issue #24266: Ctrl+C during Readline history search now cancels the search
mode when compiled with Readline 7.
- Issue #26560: Avoid potential ValueError in BaseHandler.start_response.
Initial patch by Peter Inglesby.

View File

@ -1140,6 +1140,9 @@ readline_until_enter_or_signal(const char *prompt, int *signal)
#endif
if (s < 0) {
rl_free_line_state();
#if defined(RL_READLINE_VERSION) && RL_READLINE_VERSION >= 0x0700
rl_callback_sigcleanup();
#endif
rl_cleanup_after_signal();
rl_callback_handler_remove();
*signal = 1;