]> granicus.if.org Git - python/commitdiff
Clarify the default buffering for open(). (Comment from Andrew Dalke
authorFred Drake <fdrake@acm.org>
Mon, 2 Nov 1998 18:57:34 +0000 (18:57 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 2 Nov 1998 18:57:34 +0000 (18:57 +0000)
<dalke@bioreason.com>).

Doc/lib/libfuncs.tex

index 8914883d8232b27497c8a29496af95a94ed57f0b..38e073f5b243a6463a2948c648b587773b28540c 100644 (file)
@@ -406,7 +406,7 @@ buffer size: 0 means unbuffered, 1 means line buffered, any other
 positive value means use a buffer of (approximately) that size.  A
 negative \var{bufsize} means to use the system default, which is
 usually line buffered for for tty devices and fully buffered for other
-files.%
+files.  If omitted, the system default is used.%
 \footnote{Specifying a buffer size currently has no effect on systems
 that don't have \cfunction{setvbuf()}.  The interface to specify the buffer
 size is not done using a method that calls \cfunction{setvbuf()}, because