From: Fredrik Lundh Date: Sun, 17 Oct 2004 14:47:05 +0000 (+0000) Subject: return codes are available on all platforms, not just on Unix X-Git-Tag: v2.4b2~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15aaacc93edc7f49257554c89c9c05b675a0503e;p=thirdparty%2FPython%2Fcpython.git return codes are available on all platforms, not just on Unix --- diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 3a3020d2cee7..54702a0b4c06 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*