diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2004-10-17 14:47:05 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2004-10-17 14:47:05 (GMT) |
commit | 15aaacc93edc7f49257554c89c9c05b675a0503e (patch) | |
tree | b4b07ea38a71c5a788e89b4ad5405042ca9467b2 | |
parent | 2784df7502255da3719d22a0946ce993e7e963f7 (diff) | |
download | cpython-15aaacc93edc7f49257554c89c9c05b675a0503e.zip cpython-15aaacc93edc7f49257554c89c9c05b675a0503e.tar.gz cpython-15aaacc93edc7f49257554c89c9c05b675a0503e.tar.bz2 |
return codes are available on all platforms, not just on Unix
-rw-r--r-- | Lib/subprocess.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 3a3020d..54702a0 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -27,10 +27,9 @@ """subprocess - Subprocesses with accessible I/O streams -This module allows you to spawn processes and connect to their -input/output/error pipes and obtain their return codes under Unix. -This module intends to replace several other, older modules and -functions, like: +This module allows you to spawn processes, connect to their +input/output/error pipes, and obtain their return codes. This module +intends to replace several other, older modules and functions, like: os.system os.spawn* |