summaryrefslogtreecommitdiffstats
path: root/Doc/libparser.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-04-04 07:23:21 (GMT)
committerFred Drake <fdrake@acm.org>1998-04-04 07:23:21 (GMT)
commit3a0351cf8556a20e5ccfb63ba0dbbdba79684063 (patch)
tree896e951360c60e9c545d350ed05cd18b34b394b3 /Doc/libparser.tex
parente7957184d230b7eda9e7db942bc8f96e71a8c34b (diff)
downloadcpython-3a0351cf8556a20e5ccfb63ba0dbbdba79684063.zip
cpython-3a0351cf8556a20e5ccfb63ba0dbbdba79684063.tar.gz
cpython-3a0351cf8556a20e5ccfb63ba0dbbdba79684063.tar.bz2
Remove all uses of \sectcode; we can now use logical markup everywhere.
Diffstat (limited to 'Doc/libparser.tex')
-rw-r--r--Doc/libparser.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/libparser.tex b/Doc/libparser.tex
index 56e1931..7b3f6f6 100644
--- a/Doc/libparser.tex
+++ b/Doc/libparser.tex
@@ -9,7 +9,7 @@
% in any way.
%
-\section{Built-in Module \sectcode{parser}}
+\section{Built-in Module \module{parser}}
\label{module-parser}
\bimodindex{parser}
\index{parsing!Python source code}
@@ -293,7 +293,7 @@ of the \function{compile()}\bifuncindex{compile} built-in function and
the complex example shows the use of a parse tree for information
discovery.
-\subsubsection{Emulation of \sectcode{compile()}}
+\subsubsection{Emulation of \module{compile()}}
While many useful operations may take place between parsing and
bytecode generation, the simplest operation is to do nothing. For