Use \obindex{...} instead of \indexii{...}{type} in many places; this is

more consistent with other index entries in the documentation.
This commit is contained in:
Fred Drake 2000-10-04 04:21:19 +00:00
parent d215218178
commit 0b4e25d0c0
1 changed files with 16 additions and 17 deletions

View File

@ -166,12 +166,11 @@ bits of precision. Long integers have unlimited precision. Floating
point numbers are implemented using \ctype{double} in C. All bets on point numbers are implemented using \ctype{double} in C. All bets on
their precision are off unless you happen to know the machine you are their precision are off unless you happen to know the machine you are
working with. working with.
\indexii{numeric}{types} \obindex{numeric}
\indexii{integer}{types} \obindex{integer}
\indexii{integer}{type} \obindex{long integer}
\indexiii{long}{integer}{type} \obindex{floating point}
\indexii{floating point}{type} \obindex{complex number}
\indexii{complex number}{type}
\indexii{C}{language} \indexii{C}{language}
Complex numbers have a real and imaginary part, which are both Complex numbers have a real and imaginary part, which are both
@ -332,13 +331,13 @@ builtin function \function{buffer()}.\bifuncindex{buffer} XRanges
objects are similar to buffers in that there is no specific syntax to objects are similar to buffers in that there is no specific syntax to
create them, but they are created using the \function{xrange()} create them, but they are created using the \function{xrange()}
function.\bifuncindex{xrange} function.\bifuncindex{xrange}
\indexii{sequence}{types} \obindex{sequence}
\indexii{string}{type} \obindex{string}
\indexii{Unicode}{type} \obindex{Unicode}
\indexii{buffer}{type} \obindex{buffer}
\indexii{tuple}{type} \obindex{tuple}
\indexii{list}{type} \obindex{list}
\indexii{xrange}{type} \obindex{xrange}
Sequence types support the following operations. The \samp{in} and Sequence types support the following operations. The \samp{in} and
\samp{not in} operations have the same priorities as the comparison \samp{not in} operations have the same priorities as the comparison
@ -647,7 +646,7 @@ Additional string operations are defined in standard module
\subsubsection{XRange Type \label{typesseq-xrange}} \subsubsection{XRange Type \label{typesseq-xrange}}
The xrange\indexii{xrange}{type} type is an immutable sequence which is The xrange\obindex{xrange} type is an immutable sequence which is
commonly used for looping. The advantage of the xrange type is that an commonly used for looping. The advantage of the xrange type is that an
xrange object will always take the same amount of memory, no matter the xrange object will always take the same amount of memory, no matter the
size of the range it represents. There are no consistent performance size of the range it represents. There are no consistent performance
@ -672,7 +671,7 @@ be modified once created.
The following operations are defined on mutable sequence types (where The following operations are defined on mutable sequence types (where
\var{x} is an arbitrary object): \var{x} is an arbitrary object):
\indexiii{mutable}{sequence}{types} \indexiii{mutable}{sequence}{types}
\indexii{list}{type} \obindex{list}
\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes} \begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
\lineiii{\var{s}[\var{i}] = \var{x}} \lineiii{\var{s}[\var{i}] = \var{x}}
@ -749,8 +748,8 @@ Notes:
\subsection{Mapping Types \label{typesmapping}} \subsection{Mapping Types \label{typesmapping}}
\indexii{mapping}{types} \obindex{mapping}
\indexii{dictionary}{type} \obindex{dictionary}
A \dfn{mapping} object maps values of one type (the key type) to A \dfn{mapping} object maps values of one type (the key type) to
arbitrary objects. Mappings are mutable objects. There is currently arbitrary objects. Mappings are mutable objects. There is currently