From: Jeremy Hylton Date: Mon, 6 Mar 2000 18:54:30 +0000 (+0000) Subject: fix import to refer to compiler package X-Git-Tag: v1.6a1~281 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9812e7bc6a86b5b72f1c2d3dda795d7358092572;p=python fix import to refer to compiler package --- diff --git a/Lib/compiler/visitor.py b/Lib/compiler/visitor.py index 5bdf108f87..7392662528 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 diff --git a/Tools/compiler/compiler/visitor.py b/Tools/compiler/compiler/visitor.py index 5bdf108f87..7392662528 100644 --- a/Tools/compiler/compiler/visitor.py +++ b/Tools/compiler/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