This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eryksun
Recipients eryksun, ned.deily, niacdoial, steve.dower, terry.reedy, tim.golden, zach.ware
Date 2015-03-15.13:18:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426425513.46.0.308278807257.issue23546@psf.upfronthosting.co.za>
In-reply-to
Content
> the windows packages already include an "idle.bat" launcher next 
> to the "idle.py" and "idle.pyw" files. However, this launcher 
> is (strangely enough) not used in the "edit with idle" command.

Why run a batch file instead of directly running the .pyw script via pythonw.exe? A batch file is executed by cmd.exe, which is a console application. 

I believe the batch was included as a convenient way to start IDLE from the command line with the correct version instead of the default system Python. Nowadays idle.pyw should have an explicit shebang and be installed into Scripts, including a Windows .exe wrapper to make it runnable via CreateProcess. This would already be the case if IDLE were bundled in the same way as setuptools and pip, right?
History
Date User Action Args
2015-03-15 13:18:33eryksunsetrecipients: + eryksun, terry.reedy, tim.golden, ned.deily, zach.ware, steve.dower, niacdoial
2015-03-15 13:18:33eryksunsetmessageid: <1426425513.46.0.308278807257.issue23546@psf.upfronthosting.co.za>
2015-03-15 13:18:33eryksunlinkissue23546 messages
2015-03-15 13:18:33eryksuncreate