In windows platforms how can I make two processes hold two ends of the same pipe?
os.pipe() returns reader and writer descriptors but how do I export one of the ends to another process?
Note: popen() is not good for me since the new process is left without tty input and output.
os.pipe() returns reader and writer descriptors but how do I export one of the ends to another process?
Note: popen() is not good for me since the new process is left without tty input and output.
Comment