]> granicus.if.org Git - python/commitdiff
compile can also produce AST
authorBenjamin Peterson <benjamin@python.org>
Sat, 8 Nov 2008 16:54:05 +0000 (16:54 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 8 Nov 2008 16:54:05 +0000 (16:54 +0000)
Doc/library/functions.rst

index 5b683ab6aac47be19236810c38df7c9c68f54ac4..c2af1e8283b11bf4106559214c5fe8e3754c534a 100644 (file)
@@ -199,11 +199,11 @@ are always available.  They are listed here in alphabetical order.
 
 .. function:: compile(source, filename, mode[, flags[, dont_inherit]])
 
-   Compile the *source* into a code object.  Code objects can be
+   Compile the *source* into a code object or AST object.  Code objects can be
    executed by a call to :func:`exec` or evaluated by a call to
-   :func:`eval`. *source* can either be a string or an AST object.
-   Refer to the :mod:`_ast` module documentation for information on
-   how to compile into and from AST objects.
+   :func:`eval`. *source* can either be a string or an AST object.  Refer to the
+   :mod:`_ast` module documentation for information on how to compile into and
+   from AST objects.
 
    The *filename* argument should give the file from
    which the code was read; pass some recognizable value if it wasn't