python abstract syntax trees
Mark Hammond
MarkH at ActiveState.com
Wed Feb 7 19:31:27 EST 2001
More information about the Python-list mailing list
Wed Feb 7 19:31:27 EST 2001
- Previous message (by thread): Image Capture And Processing
- Next message (by thread): python abstract syntax trees
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Joshua Marshall wrote: > In ther parser module, expr and suite return concrete syntax trees. > Does anyone know of any quick routines that build more minimal abstract > syntax trees? Check out the "compiler" project - the source code exists in the CVS tree, and I believe may be in the normal Python 2.1 distro. It uses an AST flattening module before working with the tree. The Python for .NET compiler uses the exact same code, and it was all based on "p2c"'s effort. Mark.
- Previous message (by thread): Image Capture And Processing
- Next message (by thread): python abstract syntax trees
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list