diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-08-04 21:07:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-04 21:07:26 (GMT) |
commit | a96f0367d4c84ed42f8dc80c88c10f334498f36c (patch) | |
tree | 12dfb12bfae1337cb6cca4df88cbf20a06899459 /Lib/idlelib/mainmenu.py | |
parent | a2ea9448c677706d6318eaa71101f08df7604eb9 (diff) | |
download | cpython-a96f0367d4c84ed42f8dc80c88c10f334498f36c.zip cpython-a96f0367d4c84ed42f8dc80c88c10f334498f36c.tar.gz cpython-a96f0367d4c84ed42f8dc80c88c10f334498f36c.tar.bz2 |
bpo-37748: Re-order the Run menu. (GH-15115)
Put the most common choice, Run Module, at the top.
(cherry picked from commit 14070299cdc0faf36975f0cc2d51824a9abf3db0)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib/mainmenu.py')
-rw-r--r-- | Lib/idlelib/mainmenu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/mainmenu.py b/Lib/idlelib/mainmenu.py index fc51fb1..74edce2 100644 --- a/Lib/idlelib/mainmenu.py +++ b/Lib/idlelib/mainmenu.py @@ -73,10 +73,10 @@ menudefs = [ ]), ('run', [ - ('Python Shell', '<<open-python-shell>>'), - ('C_heck Module', '<<check-module>>'), ('R_un Module', '<<run-module>>'), ('Run... _Customized', '<<run-custom>>'), + ('C_heck Module', '<<check-module>>'), + ('Python Shell', '<<open-python-shell>>'), ]), ('shell', [ |