summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-07-28 17:04:48 +0000
committerAndrew M. Kuchling <amk@amk.ca>2008-07-28 17:04:48 +0000
commit01b973123531b6b1a4d93719ee1773e7ca0e14e6 (patch)
treea8bf977aa97ee01893da8b181d0436e70eaca5e5
parent964cef63dcd7fc7c9a3bb9bdd39b4b2b8828d79b (diff)
downloadcpython-01b973123531b6b1a4d93719ee1773e7ca0e14e6.tar.gz
Clarify wording
-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 af2e251dfe..a18b571547 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: