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
ad55c5fa
Commit
ad55c5fa
authored
Jan 03, 2014
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix node subtree access in last change (use either local variable or attribute, not a mix)
parent
f6c6faf6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+11
-10
No files found.
Cython/Compiler/Nodes.py
View file @
ad55c5fa
...
...
@@ -4639,14 +4639,15 @@ class SingleAssignmentNode(AssignmentNode):
else
:
dtype
=
self
.
lhs
.
type
self
.
rhs
=
self
.
rhs
.
coerce_to
(
dtype
,
env
)
if
use_temp
or
self
.
rhs
.
is_attribute
or
(
not
self
.
rhs
.
is_name
and
not
self
.
rhs
.
is_literal
and
self
.
rhs
.
type
.
is_pyobject
):
rhs
=
self
.
rhs
.
coerce_to
(
dtype
,
env
)
if
use_temp
or
rhs
.
is_attribute
or
(
not
rhs
.
is_name
and
not
rhs
.
is_literal
and
rhs
.
type
.
is_pyobject
):
# things like (cdef) attribute access are not safe (traverses pointers)
self
.
rhs
=
self
.
rhs
.
coerce_to_temp
(
env
)
elif
self
.
rhs
.
type
.
is_pyobject
:
self
.
rhs
=
self
.
rhs
.
coerce_to_simple
(
env
)
rhs
=
rhs
.
coerce_to_temp
(
env
)
elif
rhs
.
type
.
is_pyobject
:
rhs
=
rhs
.
coerce_to_simple
(
env
)
self
.
rhs
=
rhs
return
self
def
generate_rhs_evaluation_code
(
self
,
code
):
...
...
@@ -4686,9 +4687,9 @@ class CascadedAssignmentNode(AssignmentNode):
from
ExprNodes
import
CloneNode
,
ProxyNode
rhs
=
self
.
rhs
.
analyse_types
(
env
)
if
use_temp
or
self
.
rhs
.
is_attribute
or
(
not
self
.
rhs
.
is_name
and
not
self
.
rhs
.
is_literal
and
self
.
rhs
.
type
.
is_pyobject
):
if
use_temp
or
rhs
.
is_attribute
or
(
not
rhs
.
is_name
and
not
rhs
.
is_literal
and
rhs
.
type
.
is_pyobject
):
rhs
=
rhs
.
coerce_to_temp
(
env
)
else
:
rhs
=
rhs
.
coerce_to_simple
(
env
)
...
...
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