]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add index entries for open():
authorFred Drake <fdrake@acm.org>
Thu, 5 Aug 1999 13:43:08 +0000 (13:43 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 5 Aug 1999 13:43:08 +0000 (13:43 +0000)
buffer size, I/O
I/O control, buffering
line-buffered I/O
unbuffered I/O

Doc/lib/libfuncs.tex

index 0506690c79d2cbdb6f2c34bedca98056d9a7437f..ae4af6c1904ad647d175d48210e87c39cbb9afd9 100644 (file)
@@ -443,7 +443,10 @@ one argument, return the smallest of the arguments.
   binary file, you should append \code{'b'} to the \var{mode} value
   for improved portability.  (It's useful even on systems which don't
   treat binary and text files differently, where it serves as
-  documentation.)  The optional \var{bufsize} argument specifies the
+  documentation.)
+  \index{line-buffered I/O}\index{unbuffered I/O}\index{buffer size, I/O}
+  \index{I/O control!buffering}
+  The optional \var{bufsize} argument specifies the
   file's desired 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