Commit abdbeff3 authored by Neal Norwitz's avatar Neal Norwitz

Use relative imports in compiler package now that it is required. (Should...

Use relative imports in compiler package now that it is required.  (Should this go into 2.5 or should we do compiler.XXX?)
parent a0bc30f3
......@@ -21,6 +21,6 @@ compileFile(filename)
Generates a .pyc file by compiling filename.
"""
from transformer import parse, parseFile
from visitor import walk
from pycodegen import compile, compileFile
from .transformer import parse, parseFile
from .visitor import walk
from .pycodegen import compile, compileFile
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