Re: open2 problem
> Why don't you use the subprocess module? I have tried subprocess module and got the same problem -- http://mail.python.org/mailman/listinfo/python-list
open2 problem
Hi. I have such problem with os.popen2 function: //test.py file #!/usr/local/bin/python print "start" x= raw_input() print "end" //main.py file #!/usr/local/bin/python import os i,o = os.popen2('./tester.py') print o.readline() i.write("hi") print o.readline() i.close() o.close() W