Issue 2188: Documentation hint about disabling proxy detection.
[python.git] / Doc / library / _ast.rst
blob9383591e658c9a1b0b7423ddb7c9b5c52970ce9a
1 .. _ast:
3 Abstract Syntax Trees
4 =====================
6 .. module:: _ast
7    :synopsis: Abstract Syntax Tree classes.
9 .. sectionauthor:: Martin v. Löwis <martin@v.loewis.de>
12 .. versionadded:: 2.5
14 The ``_ast`` module helps Python applications to process trees of the Python
15 abstract syntax grammar. The Python compiler currently provides read-only access
16 to such trees, meaning that applications can only create a tree for a given
17 piece of Python source code; generating :term:`bytecode` from a (potentially modified)
18 tree is not supported. The abstract syntax itself might change with each Python
19 release; this module helps to find out programmatically what the current grammar
20 looks like.
22 An abstract syntax tree can be generated by passing ``_ast.PyCF_ONLY_AST`` as a
23 flag to the :func:`compile` builtin function. The result will be a tree of
24 objects whose classes all inherit from ``_ast.AST``.
26 The actual classes are derived from the ``Parser/Python.asdl`` file, which is
27 reproduced below. There is one class defined for each left-hand side symbol in
28 the abstract grammar (for example, ``_ast.stmt`` or ``_ast.expr``). In addition,
29 there is one class defined for each constructor on the right-hand side; these
30 classes inherit from the classes for the left-hand side trees. For example,
31 ``_ast.BinOp`` inherits from ``_ast.expr``. For production rules with
32 alternatives (aka "sums"), the left-hand side class is abstract: only instances
33 of specific constructor nodes are ever created.
35 Each concrete class has an attribute ``_fields`` which gives the names of all
36 child nodes.
38 Each instance of a concrete class has one attribute for each child node, of the
39 type as defined in the grammar. For example, ``_ast.BinOp`` instances have an
40 attribute ``left`` of type ``_ast.expr``.   Instances of ``_ast.expr`` and
41 ``_ast.stmt`` subclasses also have lineno and col_offset attributes.  The lineno
42 is the line number of source text (1 indexed so the first line is line 1) and
43 the col_offset is the utf8 byte offset of the first token that generated the
44 node.  The utf8 offset is recorded because the parser uses utf8  internally.
46 If these attributes are marked as optional in the grammar (using a question
47 mark), the value might be ``None``. If the attributes can have zero-or-more
48 values (marked with an asterisk), the values are represented as Python lists.
51 Abstract Grammar
52 ----------------
54 The module defines a string constant ``__version__`` which is the decimal
55 subversion revision number of the file shown below.
57 The abstract grammar is currently defined as follows:
59 .. literalinclude:: ../../Parser/Python.asdl