How do you stop the output from subprocess.Popen from being output? Printing can sometimes be slow if there is a great deal of it.
How do you stop the output from subprocess.Popen from being output? Printing can sometimes
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to totally throw it away:
If you are using Python 2.5, you will need
from __future__ import with_statement, or just don’t usewith.