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
24c7c8ec
Commit
24c7c8ec
authored
9 years ago
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor code simplification
parent
d15619dd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Cython/Compiler/Visitor.py
Cython/Compiler/Visitor.py
+2
-2
No files found.
Cython/Compiler/Visitor.py
View file @
24c7c8ec
...
...
@@ -4,7 +4,7 @@
# Tree visitor and transform framework
#
from
__future__
import
absolute_import
from
__future__
import
absolute_import
,
print_function
import
sys
import
inspect
...
...
@@ -162,7 +162,7 @@ class TreeVisitor(object):
handler_method
=
getattr
(
self
,
pattern
%
mro_cls
.
__name__
,
None
)
if
handler_method
is
not
None
:
return
handler_method
print
(
'%s: %s'
%
(
type
(
self
),
cls
)
)
print
(
type
(
self
),
cls
)
if
self
.
access_path
:
print
(
self
.
access_path
)
print
(
self
.
access_path
[
-
1
][
0
].
pos
)
...
...
This diff is collapsed.
Click to expand it.
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