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

use absolute imports in Visitor.py

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