minor markup nits

This commit is contained in:
George Yoshida 2006-05-27 16:32:44 +00:00
parent 2d555b356a
commit 5e0b88200e
2 changed files with 5 additions and 4 deletions

View File

@ -1983,9 +1983,9 @@ Called to implement the built-in functions
\end{methoddesc} \end{methoddesc}
\begin{methoddesc}[numeric object]{__index__}{self} \begin{methoddesc}[numeric object]{__index__}{self}
Called to implement operator.index(). Also called whenever Python Called to implement \function{operator.index()}. Also called whenever
needs an integer object (such as in slicing). Must return an integer Python needs an integer object (such as in slicing). Must return an
(int or long). integer (int or long).
\versionadded{2.5} \versionadded{2.5}
\end{methoddesc} \end{methoddesc}

View File

@ -391,7 +391,8 @@ type but a string of exactly one character.
A slicing selects a range of items in a sequence object (e.g., a A slicing selects a range of items in a sequence object (e.g., a
string, tuple or list). Slicings may be used as expressions or as string, tuple or list). Slicings may be used as expressions or as
targets in assignment or del statements. The syntax for a slicing: targets in assignment or \keyword{del} statements. The syntax for a
slicing:
\obindex{sequence} \obindex{sequence}
\obindex{string} \obindex{string}
\obindex{tuple} \obindex{tuple}