cpython: 87ada87057a2 (original) (raw)
Mercurial > cpython
changeset 75986:87ada87057a2 2.7
Backport of Issue #14409 to 2.7 IDLE doesn't not execute commands from shell with default keybinding for . Patch by Roger Serwy. [#14409]
Andrew Svetlov andrew.svetlov@gmail.com | |
---|---|
date | Thu, 29 Mar 2012 19:54:58 +0300 |
parents | c40e5120a9b1 |
children | eda0ae0d2c68 |
files | Lib/idlelib/NEWS.txt Lib/idlelib/configHandler.py Misc/NEWS |
diffstat | 3 files changed, 7 insertions(+), 1 deletions(-)[+] [-] Lib/idlelib/NEWS.txt 3 Lib/idlelib/configHandler.py 2 Misc/NEWS 3 |
line wrap: on
line diff
--- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,6 +1,9 @@ What's New in IDLE 2.7.3? ======================= +- Issue #14409: IDLE doesn't not execute commands from shell,
--- a/Lib/idlelib/configHandler.py +++ b/Lib/idlelib/configHandler.py @@ -595,7 +595,7 @@ class IdleConf: '<>': [''], '<>': [''], '<>': [''],
'<<newline-and-indent>>': ['<Key-Return> <Key-KP_Enter>'],[](#l2.7)
'<<newline-and-indent>>': ['<Key-Return>', '<Key-KP_Enter>'],[](#l2.8) '<<smart-indent>>': ['<Key-Tab>'],[](#l2.9) '<<indent-region>>': ['<Control-Key-bracketright>'],[](#l2.10) '<<dedent-region>>': ['<Control-Key-bracketleft>'],[](#l2.11)
--- a/Misc/NEWS +++ b/Misc/NEWS @@ -35,6 +35,9 @@ Core and Builtins Library ------- +- Issue #14409: IDLE doesn't not execute commands from shell,