diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2018-12-28 20:11:30 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2018-12-28 20:11:30 (GMT) |
commit | c0381aaea4ad3e866bde70393c4f7efe9bcf3568 (patch) | |
tree | 8046ca7117fb3b8a6af180bc6d8ab06500f317f6 /Lib/idlelib/mainmenu.py | |
parent | 804a5d94b6b7f8cb8546112aee2bc3af362f28f5 (diff) | |
download | cpython-c0381aaea4ad3e866bde70393c4f7efe9bcf3568.zip cpython-c0381aaea4ad3e866bde70393c4f7efe9bcf3568.tar.gz cpython-c0381aaea4ad3e866bde70393c4f7efe9bcf3568.tar.bz2 |
bpo-28097: IDLE - Add Previous/Next History to Shell menu (#11325)
Diffstat (limited to 'Lib/idlelib/mainmenu.py')
-rw-r--r-- | Lib/idlelib/mainmenu.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/idlelib/mainmenu.py b/Lib/idlelib/mainmenu.py index 6081a5f..f834220 100644 --- a/Lib/idlelib/mainmenu.py +++ b/Lib/idlelib/mainmenu.py @@ -82,6 +82,9 @@ menudefs = [ ('_View Last Restart', '<<view-restart>>'), ('_Restart Shell', '<<restart-shell>>'), None, + ('_Previous History', '<<history-previous>>'), + ('_Next History', '<<history-next>>'), + None, ('_Interrupt Execution', '<<interrupt-execution>>'), ]), |