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
5b7e7165
Commit
5b7e7165
authored
Oct 10, 2014
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extend cfunc_convert test
parent
2baa1889
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
tests/run/cfunc_convert.pyx
tests/run/cfunc_convert.pyx
+12
-1
No files found.
tests/run/cfunc_convert.pyx
View file @
5b7e7165
from
libc.math
cimport
sqrt
,
log
from
libc.math
cimport
sqrt
cdef
void
empty_cfunc
():
print
"here"
...
...
@@ -11,6 +11,7 @@ def call_empty_cfunc():
cdef
object
py_func
=
empty_cfunc
py_func
()
cdef
double
square_c
(
double
x
):
return
x
*
x
...
...
@@ -24,6 +25,16 @@ def call_square_c(x):
cdef
object
py_func
=
square_c
return
py_func
(
x
)
def
return_libc_sqrt
():
"""
>>> sqrt = return_libc_sqrt()
>>> sqrt(9)
3.0
"""
return
sqrt
cdef
long
long
rad
(
long
long
x
):
cdef
long
long
rad
=
1
for
p
in
range
(
2
,
<
long
long
>
sqrt
(
x
)
+
1
):
...
...
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