From: Fred Drake Date: Tue, 18 Jun 2002 20:38:05 +0000 (+0000) Subject: Typo: bites --> bytes X-Git-Tag: v2.3c1~5268 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4bf7aa292f18de9bafb468788c272324f7bc228;p=thirdparty%2FPython%2Fcpython.git Typo: bites --> bytes (Hanging around small kids too much...;) --- diff --git a/Doc/lib/libpopen2.tex b/Doc/lib/libpopen2.tex index a8de4dc6c2eb..83b85abc4bf7 100644 --- a/Doc/lib/libpopen2.tex +++ b/Doc/lib/libpopen2.tex @@ -131,7 +131,7 @@ When reading output from a child process that writes a lot of data to standard error while the parent is reading from the child's standard out, a dead lock can occur. A similar situation can occur with other combinations of reads and writes. The essential factors are that more -than \constant{_PC_PIPE_BUF} bites are being written by one process in +than \constant{_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.