subprocess: returncode v. poll()
7stud
bbxx789_05ss at yahoo.com
Thu Sep 20 15:17:00 EDT 2007
More information about the Python-list mailing list
Thu Sep 20 15:17:00 EDT 2007
- Previous message (by thread): distutils, extensions, and missing headers
- Next message (by thread): subprocess: returncode v. poll()
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi,
What is the difference between:
1) getting the returncode directly from the subprocess object
2) calling poll() on the subprocess object?
Here is an example:
import subprocess
p = subprocess.Popen("ls", stdout=subprocess.PIPE)
print p.returncode
print p.poll()
print
print p.stdout.read()[:5]
print
print p.returncode
print p.poll()
print p.returncode
--output:--
None
None
10tes
None
0
0
- Previous message (by thread): distutils, extensions, and missing headers
- Next message (by thread): subprocess: returncode v. poll()
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list