diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-09-12 01:50:03 -0400 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-09-12 01:50:03 -0400 |
commit | 4b73676c3d260b37b91dedbc0b286c4e779350e4 (patch) | |
tree | 1ec374e24bc6a52f630831f9dfb1c08120afa65a /Lib/idlelib/Bindings.py | |
parent | ed6224ee0ceb0118cbc7f04278d8f2fefddddddd (diff) | |
download | cpython-git-4b73676c3d260b37b91dedbc0b286c4e779350e4.tar.gz |
Issue #15308: Add 'interrupt execution' (^C) to Shell menu.
Patch by Roger Serwy, updated by Bayard Randel.
Diffstat (limited to 'Lib/idlelib/Bindings.py')
-rw-r--r-- | Lib/idlelib/Bindings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/idlelib/Bindings.py b/Lib/idlelib/Bindings.py index ab25ff18b6..e19a279b1b 100644 --- a/Lib/idlelib/Bindings.py +++ b/Lib/idlelib/Bindings.py @@ -69,6 +69,8 @@ menudefs = [ ('shell', [ ('_View Last Restart', '<<view-restart>>'), ('_Restart Shell', '<<restart-shell>>'), + None, + ('_Interrupt Execution', '<<interrupt-execution>>'), ]), ('debug', [ ('_Go to File/Line', '<<goto-file-line>>'), |