]> granicus.if.org Git - python/commitdiff
Clarify wording
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 28 Jul 2008 17:04:48 +0000 (17:04 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 28 Jul 2008 17:04:48 +0000 (17:04 +0000)
Doc/library/popen2.rst

index af2e251dfe594cefd4c041b0d783a084bb49af45..a18b571547dff330ebaa68e5d224c02c4395fc05 100644 (file)
@@ -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: