Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
nexedi
cython
Commits
ceafa531
Commit
ceafa531
authored
Aug 31, 2016
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test for bare closure return bug.
parent
cc1c499b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
closure_inside_cdef_T554.pyx
tests/run/closure_inside_cdef_T554.pyx
+16
-0
No files found.
tests/run/closure_inside_cdef_T554.pyx
View file @
ceafa531
...
...
@@ -29,3 +29,19 @@ def closure_in_void():
cdef void add_gen(l):
x = "abc"
l.append((c for c in x))
def closure_in_int():
"""
>>> genex = closure_in_int()
>>> list(genex)
['a', 'b', 'c']
"""
l = []
add_gen_int(l)
return l[0]
cdef int add_gen_int(l):
x = "abc"
l.append((c for c in x))
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