Commit 85e155be authored by Jeremy Hylton's avatar Jeremy Hylton

import compile function form pycodegen

parent 92ecae51
...@@ -13,8 +13,12 @@ parseFile(path) -> AST ...@@ -13,8 +13,12 @@ parseFile(path) -> AST
walk(ast, visitor, verbose=None) walk(ast, visitor, verbose=None)
Does a pre-order walk over the ast using the visitor instance. Does a pre-order walk over the ast using the visitor instance.
See compiler.visitor for details. See compiler.visitor for details.
compile(filename)
Generates a .pyc file by compilining filename.
""" """
from transformer import parse, parseFile from transformer import parse, parseFile
from visitor import walk from visitor import walk
from pycodegen import compile
...@@ -13,8 +13,12 @@ parseFile(path) -> AST ...@@ -13,8 +13,12 @@ parseFile(path) -> AST
walk(ast, visitor, verbose=None) walk(ast, visitor, verbose=None)
Does a pre-order walk over the ast using the visitor instance. Does a pre-order walk over the ast using the visitor instance.
See compiler.visitor for details. See compiler.visitor for details.
compile(filename)
Generates a .pyc file by compilining filename.
""" """
from transformer import parse, parseFile from transformer import parse, parseFile
from visitor import walk from visitor import walk
from pycodegen import compile
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment