diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-21 13:58:17 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-21 13:58:17 (GMT) |
commit | c3fcd6fa0e50c78f71a78d8ef6198120da4cd8a3 (patch) | |
tree | a54c8a33dc1f1d92a07cb62ac3e0448221c95ece /Doc/lib | |
parent | eb67a7b9809adac2767e808e36c75d5acbf59f66 (diff) | |
download | cpython-c3fcd6fa0e50c78f71a78d8ef6198120da4cd8a3.zip cpython-c3fcd6fa0e50c78f71a78d8ef6198120da4cd8a3.tar.gz cpython-c3fcd6fa0e50c78f71a78d8ef6198120da4cd8a3.tar.bz2 |
Added index entry for "file objects"; this is appearantly referenced
somewhere in the Reference Manual, and someone tried to locate it via
the index. Report on the omission by Stefan Franke
<sfranke@cdc-group.com>.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libstdtypes.tex | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 597aab1..01ca630 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -710,15 +710,16 @@ exactly one ellipsis object, named \code{Ellipsis} (a built-in name). It is written as \code{Ellipsis}. -\subsubsection{File Objects \label{bltin-file-objects}} +\subsubsection{File Objects\obindex{file} + \label{bltin-file-objects}} -File objects are implemented using \C{}'s \code{stdio} package and can be -created with the built-in function \function{open()} described Section +File objects are implemented using \C{}'s \code{stdio} +package and can be created with the built-in function +\function{open()}\bifuncindex{open} described Section \ref{built-in-funcs}, ``Built-in Functions.'' They are also returned by some other built-in functions and methods, e.g., \function{posix.popen()} and \function{posix.fdopen()} and the \method{makefile()} method of socket objects. -\bifuncindex{open} \refbimodindex{posix} \refbimodindex{socket} |