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
f6c6faf6
Commit
f6c6faf6
authored
Jan 03, 2014
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
be another little more relaxed about temping in assignments (some things really are simple enough)
parent
7e479431
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+6
-3
No files found.
Cython/Compiler/Nodes.py
View file @
f6c6faf6
...
@@ -4641,7 +4641,8 @@ class SingleAssignmentNode(AssignmentNode):
...
@@ -4641,7 +4641,8 @@ class SingleAssignmentNode(AssignmentNode):
self
.
rhs
=
self
.
rhs
.
coerce_to
(
dtype
,
env
)
self
.
rhs
=
self
.
rhs
.
coerce_to
(
dtype
,
env
)
if
use_temp
or
self
.
rhs
.
is_attribute
or
(
if
use_temp
or
self
.
rhs
.
is_attribute
or
(
not
self
.
rhs
.
is_name
and
self
.
rhs
.
type
.
is_pyobject
):
not
self
.
rhs
.
is_name
and
not
self
.
rhs
.
is_literal
and
self
.
rhs
.
type
.
is_pyobject
):
# things like (cdef) attribute access are not safe (traverses pointers)
# things like (cdef) attribute access are not safe (traverses pointers)
self
.
rhs
=
self
.
rhs
.
coerce_to_temp
(
env
)
self
.
rhs
=
self
.
rhs
.
coerce_to_temp
(
env
)
elif
self
.
rhs
.
type
.
is_pyobject
:
elif
self
.
rhs
.
type
.
is_pyobject
:
...
@@ -4685,9 +4686,11 @@ class CascadedAssignmentNode(AssignmentNode):
...
@@ -4685,9 +4686,11 @@ class CascadedAssignmentNode(AssignmentNode):
from
ExprNodes
import
CloneNode
,
ProxyNode
from
ExprNodes
import
CloneNode
,
ProxyNode
rhs
=
self
.
rhs
.
analyse_types
(
env
)
rhs
=
self
.
rhs
.
analyse_types
(
env
)
if
use_temp
or
self
.
rhs
.
is_attribute
or
self
.
rhs
.
type
.
is_pyobject
:
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
=
rhs
.
coerce_to_temp
(
env
)
rhs
=
rhs
.
coerce_to_temp
(
env
)
el
if
rhs
.
is_nam
e
:
el
s
e
:
rhs
=
rhs
.
coerce_to_simple
(
env
)
rhs
=
rhs
.
coerce_to_simple
(
env
)
self
.
rhs
=
ProxyNode
(
rhs
)
self
.
rhs
=
ProxyNode
(
rhs
)
...
...
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