summaryrefslogtreecommitdiffstats
path: root/Doc/libparser.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-04-05 20:23:02 (GMT)
committerFred Drake <fdrake@acm.org>1998-04-05 20:23:02 (GMT)
commitaf370ea25419a699aabd7e1d4b62b273f05d943a (patch)
tree0881129db66589a141cacd5eda27e7560d83170a /Doc/libparser.tex
parent3179fe03cabac46fedf95bd4cc41a150719afad7 (diff)
downloadcpython-af370ea25419a699aabd7e1d4b62b273f05d943a.zip
cpython-af370ea25419a699aabd7e1d4b62b273f05d943a.tar.gz
cpython-af370ea25419a699aabd7e1d4b62b273f05d943a.tar.bz2
Move a short paragraph outside the description of ASTType.
Diffstat (limited to 'Doc/libparser.tex')
-rw-r--r--Doc/libparser.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/libparser.tex b/Doc/libparser.tex
index 7b3f6f6..c4d2a6a 100644
--- a/Doc/libparser.tex
+++ b/Doc/libparser.tex
@@ -274,11 +274,11 @@ AST objects returned by \function{expr()}, \function{suite()} and
Some of the functions defined which accept an AST object as their
first argument may change to object methods in the future.
+Ordered and equality comparisons are supported between AST objects.
+
\begin{datadesc}{ASTType}
The type of the objects returned by \function{expr()},
\function{suite()} and \function{sequence2ast()}.
-
-Ordered and equality comparisons are supported between AST objects.
\end{datadesc}
@@ -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 \module{compile()}}
+\subsubsection{Emulation of \function{compile()}}
While many useful operations may take place between parsing and
bytecode generation, the simplest operation is to do nothing. For