From c3fcd6fa0e50c78f71a78d8ef6198120da4cd8a3 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 21 Apr 1999 13:58:17 +0000 Subject: [PATCH] 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 . --- Doc/lib/libstdtypes.tex | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 597aab1e5bd..01ca630cb6a 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}