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
Gwenaël Samain
cython
Commits
a10a6c0c
Commit
a10a6c0c
authored
Nov 22, 2013
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make sure foreign entries are reused
parent
cf1038e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+5
-1
No files found.
Cython/Compiler/Symtab.py
View file @
a10a6c0c
...
@@ -1587,13 +1587,17 @@ class NonLocalScopeWrapper(object):
...
@@ -1587,13 +1587,17 @@ class NonLocalScopeWrapper(object):
self
.
_lookup_outer
=
scope
.
outer_scope
.
lookup
self
.
_lookup_outer
=
scope
.
outer_scope
.
lookup
def
lookup
(
self
,
name
):
def
lookup
(
self
,
name
):
foreign_name
=
ForeignName
(
name
)
entry
=
self
.
_scope
.
entries
.
get
(
foreign_name
)
if
entry
is
not
None
:
return
entry
entry
=
self
.
_lookup_outer
(
name
)
entry
=
self
.
_lookup_outer
(
name
)
if
entry
and
entry
.
scope
.
is_closure_scope
:
if
entry
and
entry
.
scope
.
is_closure_scope
:
entry
.
in_closure
=
True
entry
.
in_closure
=
True
inner_entry
=
InnerEntry
(
entry
,
self
.
_scope
)
inner_entry
=
InnerEntry
(
entry
,
self
.
_scope
)
inner_entry
.
is_variable
=
True
inner_entry
.
is_variable
=
True
# do not overwrite locally declared names
# do not overwrite locally declared names
self
.
_scope
.
entries
[
ForeignName
(
name
)
]
=
inner_entry
self
.
_scope
.
entries
[
foreign_name
]
=
inner_entry
return
inner_entry
return
inner_entry
return
entry
return
entry
...
...
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