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
ac7b0df6
Commit
ac7b0df6
authored
May 27, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extended test case
parent
245434dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
tests/run/inlined_generator_expressions.pyx
tests/run/inlined_generator_expressions.pyx
+18
-0
No files found.
tests/run/inlined_generator_expressions.pyx
View file @
ac7b0df6
...
...
@@ -18,6 +18,7 @@ def range_sum(int N):
@
cython
.
test_assert_path_exists
(
'//ForFromStatNode'
,
"//InlinedGeneratorExpressionNode"
)
@
cython
.
test_fail_if_path_exists
(
'//SimpleCallNode'
,
'//CoerceFromPyTypeNode//InlinedGeneratorExpressionNode'
,
'//ForInStatNode'
)
def
range_sum_typed
(
int
N
):
"""
...
...
@@ -29,6 +30,23 @@ def range_sum_typed(int N):
cdef
int
result
=
sum
(
i
for
i
in
range
(
N
))
return
result
@
cython
.
test_assert_path_exists
(
'//ForFromStatNode'
,
"//InlinedGeneratorExpressionNode"
,
"//ReturnStatNode//InlinedGeneratorExpressionNode"
,
"//ReturnStatNode//CoerceToPyTypeNode//InlinedGeneratorExpressionNode"
)
@
cython
.
test_fail_if_path_exists
(
'//SimpleCallNode'
,
'//CoerceFromPyTypeNode//InlinedGeneratorExpressionNode'
,
'//TypecastNode//InlinedGeneratorExpressionNode'
,
'//ForInStatNode'
)
def
return_range_sum_cast
(
int
N
):
"""
>>> sum(range(10))
45
>>> return_range_sum_cast(10)
45
"""
return
<
int
>
sum
(
i
for
i
in
range
(
N
))
@
cython
.
test_assert_path_exists
(
'//ForFromStatNode'
,
"//InlinedGeneratorExpressionNode"
)
@
cython
.
test_fail_if_path_exists
(
'//SimpleCallNode'
,
...
...
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