From 87bcc1d6460f05600d787ccf5a8eba49c08ed46b Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Mon, 12 Sep 2016 01:49:55 -0400 Subject: Issue #15308: Add 'interrupt execution' (^C) to Shell menu. Patch by Roger Serwy, updated by Bayard Randel. --- Doc/library/idle.rst | 3 +++ Lib/idlelib/Bindings.py | 2 ++ Lib/idlelib/README.txt | 11 ++++++----- Lib/idlelib/help.html | 4 +++- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst index fa1e979..34f9a89 100644 --- a/Doc/library/idle.rst +++ b/Doc/library/idle.rst @@ -222,6 +222,9 @@ View Last Restart Restart Shell Restart the shell to clean the environment. +Interrupt Execution + Stop a running program. + Debug menu (Shell window only) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/Lib/idlelib/Bindings.py b/Lib/idlelib/Bindings.py index 862e6ab..2fd8532 100644 --- a/Lib/idlelib/Bindings.py +++ b/Lib/idlelib/Bindings.py @@ -67,6 +67,8 @@ menudefs = [ ('shell', [ ('_View Last Restart', '<>'), ('_Restart Shell', '<>'), + None, + ('_Interrupt Execution', '<>'), ]), ('debug', [ ('_Go to File/Line', '<>'), diff --git a/Lib/idlelib/README.txt b/Lib/idlelib/README.txt index 7bf74c0..bc169c8 100644 --- a/Lib/idlelib/README.txt +++ b/Lib/idlelib/README.txt @@ -161,14 +161,15 @@ Edit Show surrounding parens # ParenMatch (& Hyperparser) Shell # PyShell - View Last Restart # PyShell.? - Restart Shell # PyShell.? + View Last Restart # PyShell.PyShell.view_restart_mark + Restart Shell # PyShell.PyShell.restart_shell + Interrupt Execution # pyshell.PyShell.cancel_callback Debug (Shell only) Go to File/Line - Debugger # Debugger, RemoteDebugger - Stack Viewer # StackViewer - Auto-open Stack Viewer # StackViewer + Debugger # Debugger, RemoteDebugger, PyShell.toggle_debuger + Stack Viewer # StackViewer, PyShell.open_stack_viewer + Auto-open Stack Viewer # StackViewer Format (Editor only) Indent Region diff --git a/Lib/idlelib/help.html b/Lib/idlelib/help.html index efd1623..1c4598b 100644 --- a/Lib/idlelib/help.html +++ b/Lib/idlelib/help.html @@ -238,6 +238,8 @@ line.
Scroll the shell window to the last Shell restart.
Restart Shell
Restart the shell to clean the environment.
+
Interrupt Execution
+
Stop a running program.
@@ -703,7 +705,7 @@ are currently:

The Python Software Foundation is a non-profit corporation. Please donate.
- Last updated on Aug 30, 2016. + Last updated on Sep 12, 2016. Found a bug?
Created using Sphinx 1.3.6. -- cgit v0.12