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 steve.dower
Recipients eryksun, iMath, mmaswg, ohno, paul.moore, steve.dower, tim.golden, zach.ware
Date 2020-02-29.12:35:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1582979711.23.0.651171421892.issue30082@roundup.psfhosted.org>
In-reply-to
Content
If you use subprocess to launch any process that is marked SUBSYSTEM_CONSOLE, Windows will create a new console for it. For example, "python.exe" is such a process.

Eryk's answer in the very first StackOverflow link shows how to create a STARTUPINFO parameter with the correct settings. We just want to add a Boolean argument to subprocess.Popen.__init__() that can add that setting automatically.
History
Date User Action Args
2020-02-29 12:35:11steve.dowersetrecipients: + steve.dower, paul.moore, tim.golden, zach.ware, eryksun, iMath, ohno, mmaswg
2020-02-29 12:35:11steve.dowersetmessageid: <1582979711.23.0.651171421892.issue30082@roundup.psfhosted.org>
2020-02-29 12:35:11steve.dowerlinkissue30082 messages
2020-02-29 12:35:11steve.dowercreate