[Python-checkins] python/dist/src/Lib subprocess.py,1.5,1.6

effbot at users.sourceforge.net effbot at users.sourceforge.net
Sun Oct 17 16:47:07 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8196/Lib

Modified Files:
	subprocess.py 
Log Message:
return codes are available on all platforms, not just on Unix



Index: subprocess.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/subprocess.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- subprocess.py	13 Oct 2004 18:19:18 -0000	1.5
+++ subprocess.py	17 Oct 2004 14:47:05 -0000	1.6
@@ -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*



More information about the Python-checkins mailing list