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
ebffb4ef
Commit
ebffb4ef
authored
May 05, 2011
by
Stefan Behnel
Committed by
Vitja Makarov
May 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
safety fix in compiler crash reporting code
parent
9119cc06
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 @
ebffb4ef
...
...
@@ -64,7 +64,7 @@ class TreeVisitor(object):
u'gil_message'
,
u'cpp_message'
,
u'subexprs'
]
values
=
[]
pos
=
node
.
pos
pos
=
getattr
(
node
,
'pos'
,
None
)
if
pos
:
source
=
pos
[
0
]
if
source
:
...
...
@@ -131,7 +131,7 @@ class TreeVisitor(object):
trace
.
append
(
u"File '%s', line %d, in %s: %s"
%
(
pos
[
0
],
pos
[
1
],
method_name
,
self
.
dump_node
(
node
)))
raise
Errors
.
CompilerCrash
(
last_node
.
pos
,
self
.
__class__
.
__name__
,
getattr
(
last_node
,
'pos'
,
None
)
,
self
.
__class__
.
__name__
,
u'
\
n
'
.
join
(
trace
),
e
,
stacktrace
)
def
find_handler
(
self
,
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