diff options
author | Fred Drake <fdrake@acm.org> | 1999-08-05 13:41:31 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-08-05 13:41:31 (GMT) |
commit | 8c9fc00f8dc1b5293906aadbb2dee0f4e414a481 (patch) | |
tree | e756ada3381d33e7010c834d4191ac5e3aaaebb1 /Doc | |
parent | a94f6762bc98dc834ff0a759e118066012f7cbd4 (diff) | |
download | cpython-8c9fc00f8dc1b5293906aadbb2dee0f4e414a481.zip cpython-8c9fc00f8dc1b5293906aadbb2dee0f4e414a481.tar.gz cpython-8c9fc00f8dc1b5293906aadbb2dee0f4e414a481.tar.bz2 |
Add index entry "I/O control, buffering" for fdopen().
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libos.tex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index 8388d3f..6dd733d 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -228,6 +228,7 @@ These functions create new file objects. \begin{funcdesc}{fdopen}{fd\optional{, mode\optional{, bufsize}}} Return an open file object connected to the file descriptor \var{fd}. +\index{I/O control!buffering} The \var{mode} and \var{bufsize} arguments have the same meaning as the corresponding arguments to the built-in \function{open()} function. |