Commit 9f21e8be authored by Stefan Behnel's avatar Stefan Behnel

use absolute imports in Visitor.py

parent 7e428219
...@@ -4,15 +4,17 @@ ...@@ -4,15 +4,17 @@
# Tree visitor and transform framework # Tree visitor and transform framework
# #
import inspect import inspect
import TypeSlots
import Builtin from Cython.Compiler import TypeSlots
import Nodes from Cython.Compiler import Builtin
import ExprNodes from Cython.Compiler import Nodes
import Errors from Cython.Compiler import ExprNodes
import DebugFlags from Cython.Compiler import Errors
from Cython.Compiler import DebugFlags
import cython import cython
class TreeVisitor(object): class TreeVisitor(object):
""" """
Base class for writing visitors for a Cython tree, contains utilities for Base class for writing visitors for a Cython tree, contains utilities for
......
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