Issue1057061
Created on 2004-10-29 21:49 by reowen, last changed 2004-11-07 14:33 by astrand. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg22947 - (view) | Author: Russell Owen (reowen) | Date: 2004-10-29 21:49 | |
My understanding was that subprocess.py was supposed to be
backwards compatible with at least Python 2.3 if not 2.2. Wanting
subprocess and backwards compatibility, I grabbed the subprocess.py
from 2.4b1, changed the import if so that win32api was used (since I
had no _subprocess library!) and found several problems, of which
this is is the mildes:
when using subprocess.Popen on Windows I get one or more windows
called C:\WINNT\system32\CMD.EXE popping up. Sometimes they
stick around, other times they are only around for a short time. Note
that I don't see this probem using os.popen3 (on the
other hand, os.popen3 has inferior error handling).
The following code is one example:
from subprocess import *
Popen("ds9 -title foo", shell=True, cwd="C:\\Program Files\\ds9\\")
|
|||
| msg22948 - (view) | Author: Peter Åstrand (astrand) * ![]() |
Date: 2004-10-31 07:09 | |
Logged In: YES user_id=344921 Which Windows version are you using? |
|||
| msg22949 - (view) | Author: Russell Owen (reowen) | Date: 2004-11-03 19:02 | |
Logged In: YES user_id=431773 I am using Windows 2000 Professional. |
|||
| msg22950 - (view) | Author: Peter Åstrand (astrand) * ![]() |
Date: 2004-11-07 14:33 | |
Logged In: YES user_id=344921 This happens because cmd.exe/command.com opens a window by default. To get rid of this, we need to pass SW_HIDE to startupinfo.wShowWindow. I've fixed this in revision 1.8 of subprocess.py and revision 1.3 of _subprocess.py: When using shell=True, SW_HIDE is now default. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2004-10-29 21:49:37 | reowen | create | |
