[issue36429] Fix starting IDLE with pyshell

2019-06-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Yep. I changes the headers but must have neglected to hit [Submit Changes]. -- ___ Python tracker ___ __

[issue36429] Fix starting IDLE with pyshell

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

[issue36429] Fix starting IDLE with pyshell

2019-06-16 Thread Tal Einat
Tal Einat added the comment: Terry, it looks like you merged a fix for this. Should this be closed? -- nosy: +taleinat ___ Python tracker ___ _

[issue36429] Fix starting IDLE with pyshell

2019-03-26 Thread miss-islington
miss-islington added the comment: New changeset 23eb816399ac7482d2bd7d50814b19a3db52e7d4 by Miss Islington (bot) in branch '3.7': bpo-36429: Fix starting IDLE with pyshell (GH-12548) https://github.com/python/cpython/commit/23eb816399ac7482d2bd7d50814b19a3db52e7d4 -- nosy: +miss-isl

[issue36429] Fix starting IDLE with pyshell

2019-03-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 6a258c88906a7e8acde455ee2acb78b6f315ea0b by Terry Jan Reedy in branch 'master': bpo-36429: Fix starting IDLE with pyshell (#12548) https://github.com/python/cpython/commit/6a258c88906a7e8acde455ee2acb78b6f315ea0b -- __

[issue36429] Fix starting IDLE with pyshell

2019-03-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +12515 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36429] Fix starting IDLE with pyshell

2019-03-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: One can start IDLE from python with import idlelib.idle or import idlelib.__main__ but not by importing pyshell, as there is alread a __main__ module. I cannot think of anything else to check. -- ___ Python track

[issue36429] Fix starting IDLE with pyshell

2019-03-25 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +12497 stage: needs patch -> patch review ___ Python tracker ___ ___ P

[issue36429] Fix starting IDLE with pyshell

2019-03-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: The shell actually 'starts', but with an empty box and no prompt. I am thinking of eventually deprecating and disabling starting with pyshell, but until we do, it should work. If nothing else, we should be able to display a deprecation notice if that become

[issue36429] Fix starting IDLE with pyshell

2019-03-25 Thread Terry J. Reedy
New submission from Terry J. Reedy : python -m idlelib.pyshell # and python f:/dev/3x/lib/idlelib/pyshell.py # for instance no longer start IDLE properly. The separate subprocess startup command for when pyshell is the main, from 2004, is obsolete and no longer needed. The command needed i