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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, techtonik
Date 2013-06-26.07:46:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1372232793.39.0.780986803436.issue18298@psf.upfronthosting.co.za>
In-reply-to
Content
RPython... let's be serious. The code of pythonw.exe is very simple, see PC/WinMain.c.

No, pythonw.exe is not "meant to suppresses the terminal window on startup". This is only a consequence of being a "windows application". There is a lot of documentation about this, for example:
http://comsci.liu.edu/~murali/win32gui/Win32Apps.htm

- python.exe is a regular console application, with a main() function.
- pythonw.exe is a gui application, with a WinMain() function; as a consequence, stdout/stderr won't work properly.

Again, it's a won't fix for 2.7, unless someone comes with a patch. But this has already been tried, and be careful, different versions of the msvcrt differ in behavior here.
History
Date User Action Args
2013-06-26 07:46:33amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, techtonik
2013-06-26 07:46:33amaury.forgeotdarcsetmessageid: <1372232793.39.0.780986803436.issue18298@psf.upfronthosting.co.za>
2013-06-26 07:46:33amaury.forgeotdarclinkissue18298 messages
2013-06-26 07:46:33amaury.forgeotdarccreate