akdor1154 added the comment:
If I understand the target of this issue, this is a breaking change in python
3.9 .
E.g. see https://github.com/SAP/PyHDB/issues/149
Ideally if we did not intend to break libraries then can this be fixed?
Or if it is acceptable to have such a breaking change
New submission from akdor1154 :
Hi all,
It seems impossible to show a new console window with calling subprocess.Popen
on windows with shell=True.
Attempt:
si = subprocess.STARTUPINFO()
si.dwFlags = subprocess.STARTF_USESHOWWINDOW
si.wShowWindow = 5
proc = Popen(
cmd