summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/mainmenu.py
diff options
context:
space:
mode:
authorCheryl Sabella <cheryl.sabella@gmail.com>2018-12-28 20:11:30 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2018-12-28 20:11:30 (GMT)
commitc0381aaea4ad3e866bde70393c4f7efe9bcf3568 (patch)
tree8046ca7117fb3b8a6af180bc6d8ab06500f317f6 /Lib/idlelib/mainmenu.py
parent804a5d94b6b7f8cb8546112aee2bc3af362f28f5 (diff)
downloadcpython-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.py3
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>>'),
]),