I am executing the python command,

proc = subprocess.Popen(cmd,
                        shell=False,
                        stdin=subprocess.PIPE,
                        stdout=subprocess.PIPE,
                        stderr=subprocess.PIPE,
                        )

after executing command i want to read the stderr and stdout

res = proc.stderr.read()

in res i am expecting any error or ' '

but the reading the stderr is taking infinite time is get hang not reading the values what ever the result it.it goes in infinite time.

Some time back same code is working fine but not idea why its not reading stderr now.

Any Hint, thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Instead of explicitly calling stderr.read(), just do a communicate on the proc.

output, error = proc.communicate()

That way you would get the output and error by communicating with the process.

link|improve this answer
I tried with the same but the reading the proc taking infinite time ,:( dont know why...!! – Shashi Feb 6 at 14:06
1  
Shashi, then your process is blocking, the problem is with your cmd which you are passing. It is perhaps waiting for some input. Try a different command, or as you sending stdin to PIPE as well, do proc.communicate('input\n') – Senthil Kumaran Feb 6 at 14:12
@ Senthil Kumaran ok sure i will try that. – Shashi Feb 6 at 14:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.