From: Andrew Svetlov Date: Thu, 29 Mar 2012 16:54:58 +0000 (+0300) Subject: Backport of Issue #14409 to 2.7 X-Git-Tag: v2.7.4rc1~939 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c37db10e03d863ee143d22244c0a405c8a004280;p=python Backport of Issue #14409 to 2.7 IDLE doesn't not execute commands from shell with default keybinding for . Patch by Roger Serwy. --- diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 205b9f3b48..ae230e8047 100644 --- 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, + 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)). diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py index 73487d56f3..dd13a0e733 100644 --- a/Lib/idlelib/configHandler.py +++ b/Lib/idlelib/configHandler.py @@ -595,7 +595,7 @@ class IdleConf: '<>': [''], '<>': [''], '<>': [''], - '<>': [' '], + '<>': ['', ''], '<>': [''], '<>': [''], '<>': [''], diff --git a/Misc/NEWS b/Misc/NEWS index f8190298db..08215ac6da 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -35,6 +35,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.