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
Kirill Smelkov
cython
Commits
bc0a7990
Commit
bc0a7990
authored
May 27, 2011
by
Vitja Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Track closure variables too
parent
e749f4f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
Cython/Compiler/FlowControl.py
Cython/Compiler/FlowControl.py
+2
-1
No files found.
Cython/Compiler/FlowControl.py
View file @
bc0a7990
...
...
@@ -144,7 +144,8 @@ class ControlFlow(object):
return
False
if
entry
.
type
.
is_array
or
entry
.
type
.
is_struct_or_union
:
return
False
return
entry
.
is_local
or
entry
.
is_pyclass_attr
or
entry
.
is_arg
return
(
entry
.
is_local
or
entry
.
is_pyclass_attr
or
entry
.
is_arg
or
entry
.
from_closure
or
entry
.
in_closure
)
def
mark_position
(
self
,
node
):
"""Mark position, will be used to draw graph nodes."""
...
...
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