[issue37748] IDLE: Re-order run menu

2019-08-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue37748] IDLE: Re-order run menu

2019-08-04 Thread miss-islington
miss-islington added the comment: New changeset a96f0367d4c84ed42f8dc80c88c10f334498f36c by Miss Islington (bot) in branch '3.7': bpo-37748: Re-order the Run menu. (GH-15115) https://github.com/python/cpython/commit/a96f0367d4c84ed42f8dc80c88c10f334498f36c -- __

[issue37748] IDLE: Re-order run menu

2019-08-04 Thread miss-islington
miss-islington added the comment: New changeset 9c95fc752c1465202df67fa894ef326c8ebb8cac by Miss Islington (bot) in branch '3.8': bpo-37748: Re-order the Run menu. (GH-15115) https://github.com/python/cpython/commit/9c95fc752c1465202df67fa894ef326c8ebb8cac -- nosy: +miss-islington

[issue37748] IDLE: Re-order run menu

2019-08-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 14070299cdc0faf36975f0cc2d51824a9abf3db0 by Terry Jan Reedy in branch 'master': bpo-37748: Re-order the Run menu. (GH-15115) https://github.com/python/cpython/commit/14070299cdc0faf36975f0cc2d51824a9abf3db0 --

[issue37748] IDLE: Re-order run menu

2019-08-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +14859 pull_request: https://github.com/python/cpython/pull/15119 ___ Python tracker ___ __

[issue37748] IDLE: Re-order run menu

2019-08-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +14860 pull_request: https://github.com/python/cpython/pull/15120 ___ Python tracker ___ __

[issue37748] IDLE: Re-order run menu

2019-08-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +14856 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15115 ___ Python tracker __

[issue37748] IDLE: Re-order run menu

2019-08-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: +1 for the proposed reverse ordering: Run Module Run... Customized Check Module Python Shell -- ___ Python tracker ___ __

[issue37748] IDLE: Re-order run menu

2019-08-03 Thread Tal Einat
Tal Einat added the comment: Ah, my bad, I mixed up "Check Module" with the proposed external checkers feature. Anyways, I'm +1 on this reordering, but have no opinion on the specifics. -- ___ Python tracker _

[issue37748] IDLE: Re-order run menu

2019-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Run Module and Run Customized both run Check Module first. All three involve the code in the particular editor. Restarting Shell is not editor specific, so I see *it* as the oddball. The proposed Run Checker #21880, would involve the editor code, might or

[issue37748] IDLE: Re-order run menu

2019-08-03 Thread Tal Einat
Tal Einat added the comment: Perhaps we should use a separator to differentiate between things that run in the shell and those that don't, e.g. as following: Run Module Run... Customized Python Shell - Check Module -- ___ Python tracke

[issue37748] IDLE: Re-order run menu

2019-08-02 Thread Terry J. Reedy
New submission from Terry J. Reedy : With the addition of Run Customized, the run menu looks like Python Shell Check Module Run Module Run... Customized This order resulted from Check and Run Module originally being implemented as extensions, which forced them to be below Python Shell. The s