2000-03-06 15:04:14 -04:00
|
|
|
"""Package for parsing and compiling Python source code
|
|
|
|
|
|
|
|
There are several functions defined at the top level that are imported
|
|
|
|
from modules contained in the package.
|
|
|
|
|
2001-09-17 18:02:51 -03:00
|
|
|
parse(buf, mode="exec") -> AST
|
2001-04-09 01:23:55 -03:00
|
|
|
Converts a string containing Python source code to an abstract
|
2000-03-06 15:04:14 -04:00
|
|
|
syntax tree (AST). The AST is defined in compiler.ast.
|
|
|
|
|
|
|
|
parseFile(path) -> AST
|
|
|
|
The same as parse(open(path))
|
|
|
|
|
|
|
|
walk(ast, visitor, verbose=None)
|
|
|
|
Does a pre-order walk over the ast using the visitor instance.
|
|
|
|
See compiler.visitor for details.
|
2000-03-06 15:12:33 -04:00
|
|
|
|
2001-09-17 18:02:51 -03:00
|
|
|
compile(source, filename, mode, flags=None, dont_inherit=None)
|
2001-10-18 18:57:37 -03:00
|
|
|
Returns a code object. A replacement for the builtin compile() function.
|
2001-09-17 18:02:51 -03:00
|
|
|
|
|
|
|
compileFile(filename)
|
2001-09-27 01:18:36 -03:00
|
|
|
Generates a .pyc file by compiling filename.
|
2000-03-06 15:04:14 -04:00
|
|
|
"""
|
2008-05-09 23:58:26 -03:00
|
|
|
from warnings import warnpy3k
|
|
|
|
warnpy3k("the compiler package has been removed in Python 3.0", stacklevel=2)
|
|
|
|
del warnpy3k
|
2000-03-06 15:04:14 -04:00
|
|
|
|
2006-04-03 01:45:34 -03:00
|
|
|
from compiler.transformer import parse, parseFile
|
|
|
|
from compiler.visitor import walk
|
|
|
|
from compiler.pycodegen import compile, compileFile
|