diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-03-06 18:54:30 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-03-06 18:54:30 (GMT) |
commit | 9812e7bc6a86b5b72f1c2d3dda795d7358092572 (patch) | |
tree | c17eb537352b3f2d6add677799858c7edf35596c /Lib/compiler | |
parent | abd7ebf70bbb149b3872d26925ebab21b740cd58 (diff) | |
download | cpython-9812e7bc6a86b5b72f1c2d3dda795d7358092572.zip cpython-9812e7bc6a86b5b72f1c2d3dda795d7358092572.tar.gz cpython-9812e7bc6a86b5b72f1c2d3dda795d7358092572.tar.bz2 |
fix import to refer to compiler package
Diffstat (limited to 'Lib/compiler')
-rw-r--r-- | Lib/compiler/visitor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/visitor.py b/Lib/compiler/visitor.py index 5bdf108..7392662 100644 --- a/Lib/compiler/visitor.py +++ b/Lib/compiler/visitor.py @@ -1,4 +1,4 @@ -from tools import ast +from compiler import ast class ASTVisitor: """Performs a depth-first walk of the AST |