Added a test for the ability to specify a class attribute in Formatter configuration...
[python.git] / Doc / lib / libtoken.tex
blob47f4750db3cf23ee73558cce7926769d0f55c9a2
1 \section{\module{token} ---
2 Constants used with Python parse trees}
4 \declaremodule{standard}{token}
5 \modulesynopsis{Constants representing terminal nodes of the parse tree.}
6 \sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org}
9 This module provides constants which represent the numeric values of
10 leaf nodes of the parse tree (terminal tokens). Refer to the file
11 \file{Grammar/Grammar} in the Python distribution for the definitions
12 of the names in the context of the language grammar. The specific
13 numeric values which the names map to may change between Python
14 versions.
16 This module also provides one data object and some functions. The
17 functions mirror definitions in the Python C header files.
21 \begin{datadesc}{tok_name}
22 Dictionary mapping the numeric values of the constants defined in this
23 module back to name strings, allowing more human-readable
24 representation of parse trees to be generated.
25 \end{datadesc}
27 \begin{funcdesc}{ISTERMINAL}{x}
28 Return true for terminal token values.
29 \end{funcdesc}
31 \begin{funcdesc}{ISNONTERMINAL}{x}
32 Return true for non-terminal token values.
33 \end{funcdesc}
35 \begin{funcdesc}{ISEOF}{x}
36 Return true if \var{x} is the marker indicating the end of input.
37 \end{funcdesc}
40 \begin{seealso}
41 \seemodule{parser}{The second example for the \refmodule{parser}
42 module shows how to use the \module{symbol}
43 module.}
44 \end{seealso}