[IronPython] subprocess module

2008-12-14 Thread Brown, Matt
Hello, I was glad to see that a subprocess module had been written for use with IronPython; as I'd like to get stdout from plink and os.popen will not handle this, but subprocess.popen will. (http://www.ironpython.info/index.php/The_subprocess_module) However, when I attempt build an IronPython S

[IronPython] subprocess module

2008-03-19 Thread Jeff Hardy
Hi all, Attached is a partial .NET implementation of the subprocess module. There are currently a few limitations: * Popen.communicate doesn't work * Can't redirect stdin except for PIPE * Can't redirect stderr to stdout (i.e. using stderr=subprocess.STDOUT) * Can't redirect to a file descriptor *