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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
daaac441
Commit
daaac441
authored
Jul 06, 2018
by
scoder
Committed by
GitHub
Jul 06, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2405 from gabrieldemarmiesse/test_pure_12
Adding tests for "pure python mode" part 12
parents
373cc5de
7ddb28ca
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
17 deletions
+18
-17
docs/examples/tutorial/pure/mymodule.pxd
docs/examples/tutorial/pure/mymodule.pxd
+5
-0
docs/examples/tutorial/pure/mymodule.py
docs/examples/tutorial/pure/mymodule.py
+10
-0
docs/src/tutorial/pure.rst
docs/src/tutorial/pure.rst
+3
-17
No files found.
docs/examples/tutorial/pure/mymodule.pxd
0 → 100644
View file @
daaac441
# mymodule.pxd
# declare a C function as "cpdef" to export it to the module
cdef
extern
from
"math.h"
:
cpdef
double
sin
(
double
x
)
docs/examples/tutorial/pure/mymodule.py
0 → 100644
View file @
daaac441
# mymodule.py
import
cython
# override with Python import if not in compiled code
if
not
cython
.
compiled
:
from
math
import
sin
# calls sin() from math.h when compiled with Cython and math.sin() in Python
print
(
sin
(
0
))
docs/src/tutorial/pure.rst
View file @
daaac441
...
...
@@ -299,25 +299,11 @@ Calling C functions
Normally, it isn't possible to call C functions in pure Python mode as there
is no general way to support it in normal (uncompiled) Python. However, in
cases where an equivalent Python function exists, this can be achieved by
combining C function coercion with a conditional import as follows:
:
combining C function coercion with a conditional import as follows:
# in mymodule.pxd:
.. literalinclude:: ../../examples/tutorial/pure/mymodule.pxd
# declare a C function as "cpdef" to export it to the module
cdef extern from "math.h":
cpdef double sin(double x)
# in mymodule.py:
import cython
# override with Python import if not in compiled code
if not cython.compiled:
from math import sin
# calls sin() from math.h when compiled with Cython and math.sin() in Python
print(sin(0))
.. literalinclude:: ../../examples/tutorial/pure/mymodule.py
Note that the "sin" function will show up in the module namespace of "mymodule"
here (i.e. there will be a ``mymodule.sin()`` function). You can mark it as an
...
...
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