Issue #7117, continued: Remove substitution of %g-style formatting for
[python.git] / Doc / library / token.rst
blob5bf0ea80e220ea508add2effe904cb81f2e2971e
2 :mod:`token` --- Constants used with Python parse trees
3 =======================================================
5 .. module:: token
6    :synopsis: Constants representing terminal nodes of the parse tree.
7 .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
10 This module provides constants which represent the numeric values of leaf nodes
11 of the parse tree (terminal tokens).  Refer to the file :file:`Grammar/Grammar`
12 in the Python distribution for the definitions of the names in the context of
13 the language grammar.  The specific numeric values which the names map to may
14 change between Python versions.
16 This module also provides one data object and some functions.  The functions
17 mirror definitions in the Python C header files.
20 .. data:: tok_name
22    Dictionary mapping the numeric values of the constants defined in this module
23    back to name strings, allowing more human-readable representation of parse trees
24    to be generated.
27 .. function:: ISTERMINAL(x)
29    Return true for terminal token values.
32 .. function:: ISNONTERMINAL(x)
34    Return true for non-terminal token values.
37 .. function:: ISEOF(x)
39    Return true if *x* is the marker indicating the end of input.
42 .. seealso::
44    Module :mod:`parser`
45       The second example for the :mod:`parser` module shows how to use the
46       :mod:`symbol` module.