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 mark
Recipients mark, paul.moore, steve.dower, tim.golden, zach.ware
Date 2016-09-06.19:00:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473188440.88.0.613793124058.issue27980@psf.upfronthosting.co.za>
In-reply-to
Content
The excellent py.exe launcher on Windows always uses a python.exe interpreter (although another issue suggests it will use pythonw.exe when the python file has a .pyw suffix which is good).

However, if one wanted to provide a .bat file like this:

@echo off
pushd %~dp0
py -3 MyGuiApp.pyw %*
popd

python.exe would be used rather than pythonw.exe.

My suggestion is to add a -w and/or --win(dows) flag which forces the use of pythonw.exe.
History
Date User Action Args
2016-09-06 19:00:40marksetrecipients: + mark, paul.moore, tim.golden, zach.ware, steve.dower
2016-09-06 19:00:40marksetmessageid: <1473188440.88.0.613793124058.issue27980@psf.upfronthosting.co.za>
2016-09-06 19:00:40marklinkissue27980 messages
2016-09-06 19:00:40markcreate