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
6f8179ed
Commit
6f8179ed
authored
Jan 27, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
3819ab7f
746b968f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+9
-4
No files found.
Cython/Compiler/ExprNodes.py
View file @
6f8179ed
...
...
@@ -2979,13 +2979,18 @@ class SimpleCallNode(CallNode):
# sure they are either all temps or all not temps
for
i
in
range
(
min
(
max_nargs
,
actual_nargs
)):
arg
=
self
.
args
[
i
]
# local variables are safe
if
not
arg
.
is_name
or
arg
.
entry
and
(
not
arg
.
entry
.
is_local
or
arg
.
entry
.
in_closure
):
if
arg
.
is_name
and
arg
.
entry
and
(
arg
.
entry
.
is_local
or
arg
.
entry
.
in_closure
or
arg
.
entry
.
type
.
is_cfunction
):
# local variables are safe
# TODO: what about the non-local keyword?
pass
elif
env
.
nogil
and
arg
.
type
.
is_pyobject
:
# can't copy a Python reference into a temp in nogil
# env (this is safe: a construction would fail in
# nogil anyway)
if
not
(
env
.
nogil
and
arg
.
type
.
is_pyobject
):
self
.
args
[
i
]
=
arg
.
coerce_to_temp
(
env
)
pass
else
:
self
.
args
[
i
]
=
arg
.
coerce_to_temp
(
env
)
for
i
in
range
(
max_nargs
,
actual_nargs
):
arg
=
self
.
args
[
i
]
if
arg
.
type
.
is_pyobject
:
...
...
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