[Python-checkins] r65263 - python/trunk/Doc/library/popen2.rst

andrew.kuchling python-checkins at python.org
Mon Jul 28 19:04:48 CEST 2008


Author: andrew.kuchling
Date: Mon Jul 28 19:04:48 2008
New Revision: 65263

Log:
Clarify wording

Modified:
   python/trunk/Doc/library/popen2.rst

Modified: python/trunk/Doc/library/popen2.rst
==============================================================================
--- python/trunk/Doc/library/popen2.rst	(original)
+++ python/trunk/Doc/library/popen2.rst	Mon Jul 28 19:04:48 2008
@@ -149,7 +149,7 @@
 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:


More information about the Python-checkins mailing list