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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
4d51e99d
Commit
4d51e99d
authored
Nov 15, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code simplification
parent
3241fbf0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
13 deletions
+9
-13
Cython/Compiler/Visitor.py
Cython/Compiler/Visitor.py
+9
-13
No files found.
Cython/Compiler/Visitor.py
View file @
4d51e99d
...
@@ -141,19 +141,15 @@ class TreeVisitor(object):
...
@@ -141,19 +141,15 @@ class TreeVisitor(object):
mro
=
inspect
.
getmro
(
cls
)
mro
=
inspect
.
getmro
(
cls
)
handler_method
=
None
handler_method
=
None
for
mro_cls
in
mro
:
for
mro_cls
in
mro
:
if
hasattr
(
self
,
pattern
%
mro_cls
.
__name__
):
handler_method
=
getattr
(
self
,
pattern
%
mro_cls
.
__name__
,
None
)
handler_method
=
getattr
(
self
,
pattern
%
mro_cls
.
__name__
)
if
handler_method
is
not
None
:
break
return
handler_method
if
handler_method
is
None
:
print
type
(
self
),
cls
print
type
(
self
),
cls
if
self
.
access_path
:
if
hasattr
(
self
,
'access_path'
)
and
self
.
access_path
:
print
self
.
access_path
print
self
.
access_path
print
self
.
access_path
[
-
1
][
0
].
pos
if
self
.
access_path
:
print
self
.
access_path
[
-
1
][
0
].
__dict__
print
self
.
access_path
[
-
1
][
0
].
pos
raise
RuntimeError
(
"Visitor %r does not accept object: %s"
%
(
self
,
obj
))
print
self
.
access_path
[
-
1
][
0
].
__dict__
raise
RuntimeError
(
"Visitor %r does not accept object: %s"
%
(
self
,
obj
))
#print "Caching " + cls.__name__
return
handler_method
def
visit
(
self
,
obj
):
def
visit
(
self
,
obj
):
return
self
.
_visit
(
obj
)
return
self
.
_visit
(
obj
)
...
...
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