diff options
author | Fred Drake <fdrake@acm.org> | 1999-06-01 17:55:52 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-06-01 17:55:52 (GMT) |
commit | 5fac2ab220bdfa19c96cdd941a7ebe624150fa82 (patch) | |
tree | e32d6b973d7c5572c74cdcea72b003ea944bd0df | |
parent | 32465f4148e40735a2287b78997cf1952e8501f2 (diff) | |
download | cpython-5fac2ab220bdfa19c96cdd941a7ebe624150fa82.zip cpython-5fac2ab220bdfa19c96cdd941a7ebe624150fa82.tar.gz cpython-5fac2ab220bdfa19c96cdd941a7ebe624150fa82.tar.bz2 |
Fix availability clause; mention availability of similar functionality
for Windows using win32pipe.
-rw-r--r-- | Doc/lib/libpopen2.tex | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/lib/libpopen2.tex b/Doc/lib/libpopen2.tex index 08da910..71c4631 100644 --- a/Doc/lib/libpopen2.tex +++ b/Doc/lib/libpopen2.tex @@ -2,13 +2,16 @@ Subprocesses with accessible I/O streams} \declaremodule{standard}{popen2} - \platform{Unix, Windows} + \platform{Unix} \modulesynopsis{Subprocesses with accessible standard I/O streams.} \sectionauthor{Drew Csillag}{drew_csillag@geocities.com} This module allows you to spawn processes and connect their -input/output/error pipes and obtain their return codes. +input/output/error pipes and obtain their return codes under \UNIX. +Similar functionality exists for Windows platforms using the +\module{win32pipe} module provided as part of Mark Hammond's Windows +extensions. The primary interface offered by this module is a pair of factory functions: |