diff options
author | Fred Drake <fdrake@acm.org> | 1998-04-04 07:17:47 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-04-04 07:17:47 (GMT) |
commit | e7957184d230b7eda9e7db942bc8f96e71a8c34b (patch) | |
tree | 465fc74ec9b63685706b8c69e2643310be0e21db /Doc/tut | |
parent | fc57619811688c2ca885d285c651e0da59b88cc4 (diff) | |
download | cpython-e7957184d230b7eda9e7db942bc8f96e71a8c34b.zip cpython-e7957184d230b7eda9e7db942bc8f96e71a8c34b.tar.gz cpython-e7957184d230b7eda9e7db942bc8f96e71a8c34b.tar.bz2 |
Change \sectcode to logical markup.
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index d00b37e..0d16033 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -923,7 +923,7 @@ makes this particularly convenient: ['defenestrate', 'cat', 'window', 'defenestrate'] \end{verbatim} -\section{The \sectcode{range()} Function} +\section{The \function{range()} Function} \label{range} If you do need to iterate over a sequence of numbers, the built-in @@ -1470,7 +1470,7 @@ item, then to the result and the next item, and so on. For example, 0 \end{verbatim} -\section{The \sectcode{del} statement} +\section{The \keyword{del} statement} \label{del} There is a way to remove an item from a list given its index instead @@ -1935,7 +1935,7 @@ is not set. You can modify it using standard list operations, e.g.: >>> sys.path.append('/ufs/guido/lib/python') \end{verbatim} -\section{The \sectcode{dir()} Function} +\section{The \function{dir()} Function} \label{dir} The built-in function \function{dir()} is used to find out which names |