mirror of
https://github.com/python/cpython.git
synced 2026-01-03 22:12:27 +00:00
Use relative imports in compiler package now that it is required. (Should this go into 2.5 or should we do compiler.XXX?)
This commit is contained in:
parent
a0bc30f36f
commit
abdbeff36e
1 changed files with 3 additions and 3 deletions
|
|
@ -21,6 +21,6 @@
|
|||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue