summaryrefslogtreecommitdiffstats
path: root/Doc/library/popen2.rst
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-07-28 17:04:48 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2008-07-28 17:04:48 (GMT)
commit5d2841f28ffe58a8d7e137363a73ac58647a097e (patch)
tree828ee2cccc214085b977e5801727208f317bad3d /Doc/library/popen2.rst
parentfff5cf67d01ad3eb039da9071275764bfd53a943 (diff)
downloadcpython-5d2841f28ffe58a8d7e137363a73ac58647a097e.zip
cpython-5d2841f28ffe58a8d7e137363a73ac58647a097e.tar.gz
cpython-5d2841f28ffe58a8d7e137363a73ac58647a097e.tar.bz2
Clarify wording
Diffstat (limited to 'Doc/library/popen2.rst')
-rw-r--r--Doc/library/popen2.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/popen2.rst b/Doc/library/popen2.rst
index af2e251..a18b571 100644
--- a/Doc/library/popen2.rst
+++ b/Doc/library/popen2.rst
@@ -149,7 +149,7 @@ error while the parent is reading from the child's standard output, a deadlock
can occur. A similar situation can occur with other combinations of reads and
writes. The essential factors are that more than :const:`_PC_PIPE_BUF` bytes
are being written by one process in a blocking fashion, while the other process
-is reading from the other process, also in a blocking fashion.
+is reading from the first process, also in a blocking fashion.
.. Example explanation and suggested work-arounds substantially stolen
from Martin von Löwis: