diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-08-04 14:07:26 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-04 14:07:26 -0700 |
| commit | a96f0367d4c84ed42f8dc80c88c10f334498f36c (patch) | |
| tree | 12dfb12bfae1337cb6cca4df88cbf20a06899459 /Lib/idlelib/mainmenu.py | |
| parent | a2ea9448c677706d6318eaa71101f08df7604eb9 (diff) | |
| download | cpython-git-a96f0367d4c84ed42f8dc80c88c10f334498f36c.tar.gz | |
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 fc51fb1b5d..74edce2348 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', [ |
