Niki Spahiev <[EMAIL PROTECTED]> writes: > Chris Maloof wrote: > >> Thanks for the help! ctypes ended up working for me, with help from >> win32process where possible. I'm not sure why the solutions >> involving popen variants failed; I might have missed something >> easier. Here's the meat of my solution for the archives anyway, >> though. > > IIRC there is new module process which replaces popen with better > functionality.
This is subprocess (included in Python 2.4). But if the child application really writes to the console directly, and not to standard output, I would guess that subprocess won't be able to read the output. Thomas _______________________________________________ Python-win32 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-win32
