Issue #14409: IDLE doesn't not execute commands from shell with default keybinding for <Return>.
Patch by Roger Serwy.
This commit is contained in:
parent
07cf1d8085
commit
67ac079203
|
@ -1,6 +1,9 @@
|
|||
What's New in IDLE 3.2.3?
|
||||
=========================
|
||||
|
||||
- Issue #14409: IDLE doesn't not execute commands from shell,
|
||||
error with default keybinding for Return. (Patch by Roger Serwy)
|
||||
|
||||
- Issue #3573: IDLE hangs when passing invalid command line args
|
||||
(directory(ies) instead of file(s)).
|
||||
|
||||
|
|
|
@ -595,7 +595,7 @@ class IdleConf:
|
|||
'<<replace>>': ['<Control-h>'],
|
||||
'<<goto-line>>': ['<Alt-g>'],
|
||||
'<<smart-backspace>>': ['<Key-BackSpace>'],
|
||||
'<<newline-and-indent>>': ['<Key-Return> <Key-KP_Enter>'],
|
||||
'<<newline-and-indent>>': ['<Key-Return>', '<Key-KP_Enter>'],
|
||||
'<<smart-indent>>': ['<Key-Tab>'],
|
||||
'<<indent-region>>': ['<Control-Key-bracketright>'],
|
||||
'<<dedent-region>>': ['<Control-Key-bracketleft>'],
|
||||
|
|
|
@ -31,6 +31,9 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #14409: IDLE doesn't not execute commands from shell,
|
||||
error with default keybinding for Return. (Patch by Roger Serwy)
|
||||
|
||||
- Issue #10340: asyncore - properly handle EINVAL in dispatcher constructor on
|
||||
OSX; avoid to call handle_connect in case of a disconnected socket which
|
||||
was not meant to connect.
|
||||
|
|
Loading…
Reference in New Issue