diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-02-06 18:04:43 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-02-06 18:04:43 (GMT) |
commit | 93cf58b015f797c9ad2de56f00bce5754cd764d6 (patch) | |
tree | 3f93115aa18749fec1750e79afd59ffeb650b915 /Doc/lib/libpopen2.tex | |
parent | 581cb938d0650a44b8a959ebc924439992e595df (diff) | |
download | cpython-93cf58b015f797c9ad2de56f00bce5754cd764d6.zip cpython-93cf58b015f797c9ad2de56f00bce5754cd764d6.tar.gz cpython-93cf58b015f797c9ad2de56f00bce5754cd764d6.tar.bz2 |
Typo fixes
Diffstat (limited to 'Doc/lib/libpopen2.tex')
-rw-r--r-- | Doc/lib/libpopen2.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libpopen2.tex b/Doc/lib/libpopen2.tex index 41a7e8e..577f6f1 100644 --- a/Doc/lib/libpopen2.tex +++ b/Doc/lib/libpopen2.tex @@ -57,7 +57,7 @@ This class represents a child process. Normally, \class{Popen3} instances are created using the \function{popen2()} and \function{popen3()} factory functions described above. -If not using one off the helper functions to create \class{Popen3} +If not using one of the helper functions to create \class{Popen3} objects, the parameter \var{cmd} is the shell command to execute in a sub-process. The \var{capturestderr} flag, if true, specifies that the object should capture standard error output of the child process. @@ -129,7 +129,7 @@ module equivalents). When reading output from a child process that writes a lot of data to standard error while the parent is reading from the child's standard -out, a deadlock can occur. A similar situation can occur with other +output, a deadlock can occur. A similar situation can occur with other combinations of reads and writes. The essential factors are that more than \constant{_PC_PIPE_BUF} bytes are being written by one process in a blocking fashion, while the other process is reading from the other |