Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5a8c7465
Commit
5a8c7465
authored
Mar 22, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Plain Diff
Issue #24266: Merge readline Ctrl+C handling from 3.5
parents
3ddc7ed9
82ddaaee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/readline.c
Modules/readline.c
+3
-0
No files found.
Misc/NEWS
View file @
5a8c7465
...
...
@@ -232,6 +232,9 @@ Core and Builtins
Library
-------
-
Issue
#
24266
:
Ctrl
+
C
during
Readline
history
search
now
cancels
the
search
mode
when
compiled
with
Readline
7.
-
Issue
#
26590
:
Implement
a
safe
finalizer
for
the
_socket
.
socket
type
.
It
now
releases
the
GIL
to
close
the
socket
.
...
...
Modules/readline.c
View file @
5a8c7465
...
...
@@ -1138,6 +1138,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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment