Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
cython
Commits
9f21e8be
Commit
9f21e8be
authored
Jul 26, 2013
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use absolute imports in Visitor.py
parent
7e428219
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
Cython/Compiler/Visitor.py
Cython/Compiler/Visitor.py
+8
-6
No files found.
Cython/Compiler/Visitor.py
View file @
9f21e8be
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment