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
Kirill Smelkov
cython
Commits
226a8ac6
Commit
226a8ac6
authored
Dec 14, 2008
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix in visitor doctests
parent
60757b21
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
Cython/Compiler/Visitor.py
Cython/Compiler/Visitor.py
+7
-7
No files found.
Cython/Compiler/Visitor.py
View file @
226a8ac6
...
...
@@ -25,16 +25,16 @@ class BasicVisitor(object):
# Must resolve, try entire hierarchy
pattern
=
"visit_%s"
mro
=
inspect
.
getmro
(
cls
)
handler_method
=
None
for
mro_cls
in
mro
:
try
:
if
hasattr
(
self
,
pattern
%
mro_cls
.
__name__
)
:
handler_method
=
getattr
(
self
,
pattern
%
mro_cls
.
__name__
)
break
except
AttributeError
:
pass
else
:
if
handler_method
is
None
:
print
type
(
self
),
type
(
obj
)
if
hasattr
(
self
,
'access_path'
):
print
self
.
access_path
if
self
.
access_path
:
print
self
.
access_path
[
-
1
][
0
].
pos
print
self
.
access_path
[
-
1
][
0
].
__dict__
raise
RuntimeError
(
"Visitor does not accept object: %s"
%
obj
)
...
...
@@ -60,7 +60,7 @@ class TreeVisitor(BasicVisitor):
Example:
>>> class SampleNode:
>>> class SampleNode
(object)
:
... child_attrs = ["head", "body"]
... def __init__(self, value, head=None, body=None):
... self.value = value
...
...
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