From: Andrew M. Kuchling Date: Mon, 28 Jul 2008 17:04:48 +0000 (+0000) Subject: Clarify wording X-Git-Tag: v2.6b3~212 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d2841f28ffe58a8d7e137363a73ac58647a097e;p=python Clarify wording --- 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: