From a96f0367d4c84ed42f8dc80c88c10f334498f36c Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 4 Aug 2019 14:07:26 -0700 Subject: 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 --- Lib/idlelib/mainmenu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/idlelib/mainmenu.py') 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', '<>'), - ('C_heck Module', '<>'), ('R_un Module', '<>'), ('Run... _Customized', '<>'), + ('C_heck Module', '<>'), + ('Python Shell', '<>'), ]), ('shell', [ -- cgit v1.2.1