[issue34062] Python launcher on Windows does not work with --list or --list-paths

2018-08-31 Thread Steve Dower
Steve Dower added the comment: Thanks, Brendan! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34062] Python launcher on Windows does not work with --list or --list-paths

2018-08-31 Thread miss-islington
miss-islington added the comment: New changeset 5df3658f2db1585607d41c25093a2a7d2a4de347 by Miss Islington (bot) in branch '3.7': bpo-34062: Add missing launcher argument and make behavior consistent between short and long arguments (GH-8827) https://github.com/python/cpython/commit/5df3658f

[issue34062] Python launcher on Windows does not work with --list or --list-paths

2018-08-31 Thread miss-islington
Change by miss-islington : -- pull_requests: +8483 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34062] Python launcher on Windows does not work with --list or --list-paths

2018-08-31 Thread Steve Dower
Steve Dower added the comment: New changeset aada63b20ec64bbfc4f2fb0718fc563eedbdd36a by Steve Dower (Brendan Gerrity) in branch 'master': bpo-34062: Add missing launcher argument and make behavior consistent between short and long arguments (GH-8827) https://github.com/python/cpython/commit

[issue34062] Python launcher on Windows does not work with --list or --list-paths

2018-08-28 Thread Brendan Gerrity
Change by Brendan Gerrity : -- nosy: +bgerrity ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue34062] Python launcher on Windows does not work with --list or --list-paths

2018-08-19 Thread Brendan Gerrity
Change by Brendan Gerrity : -- pull_requests: +8306 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue34062] Python launcher on Windows does not work with --list or --list-paths

2018-08-18 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +8293 stage: test needed -> patch review ___ Python tracker ___ ___ Pyt

[issue34062] Python launcher on Windows does not work with --list or --list-paths

2018-07-06 Thread Eryk Sun
Eryk Sun added the comment: I don't think the launcher has unit tests. The if statement in process() that calls show_python_list only checks for "-0". It needs to check for the long names as well, e.g.: if (argc == 2) { /* First check for -0[p], --list, or --list-paths. */

[issue34062] Python launcher on Windows does not work with --list or --list-paths

2018-07-06 Thread Brett Cannon
New submission from Brett Cannon : When you run `py -h` it says you can use -0 or --list as well as -0p or --list-paths, but both --list and --list-paths don't work (the -0-based options do, though). -- components: Windows messages: 321187 nosy: brett.cannon, paul.moore, steve.dower,