]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #14409: IDLE doesn't not execute commands from shell with default keybinding...
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 29 Mar 2012 16:01:28 +0000 (19:01 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 29 Mar 2012 16:01:28 +0000 (19:01 +0300)
Patch by Roger Serwy.

Lib/idlelib/NEWS.txt
Lib/idlelib/configHandler.py
Misc/NEWS

index 4482be2024ab62d335a2f9f6b16662f835a51c2b..f7fbe457428d9834ce096aad1722469502a02ade 100644 (file)
@@ -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)).
 
index 73b8db5b23261bce4ab04724a27ed0eef41bcd14..da927260ee8df9506c01f8ab1b5f0bd65feffa2c 100644 (file)
@@ -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>'],
index e3b110de98f14cd2bb8db47d682c1d7a5a0ae241..f4a2d03d29c8a2bf99c67a10593dcda8d0ee9ade 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.