p = subprocess.Popen(['E:/EntTools/360EntSignHelper.exe',
'E:/build/temp/RemoteAssistSetup.exe'],
stdout=subprocess.PIPE, shell=True).stdout
temp = p.readline();
print temp
p.close()
When I run the above code in command line, it works formally.
However, when I writed it into a .py file and execute the .py file, it blocked
at "temp=p.readline()".
What's the problem?
Please help.
_______________________________________________
Tutor maillist - [email protected]
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor