projects
/
platform
/
upstream
/
python-cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a435c0
)
rst fix
author
Stefan Behnel
<stefan_ml@behnel.de>
Sat, 6 Jul 2013 05:30:27 +0000
(07:30 +0200)
committer
Stefan Behnel
<stefan_ml@behnel.de>
Sat, 6 Jul 2013 05:30:27 +0000
(07:30 +0200)
docs/src/quickstart/cythonize.rst
patch
|
blob
|
history
diff --git
a/docs/src/quickstart/cythonize.rst
b/docs/src/quickstart/cythonize.rst
index
72270b0
..
efe985c
100644
(file)
--- a/
docs/src/quickstart/cythonize.rst
+++ b/
docs/src/quickstart/cythonize.rst
@@
-95,7
+95,7
@@
within the function call.
A side-effect of cdef is that the function is no longer available from
Python-space, as Python wouldn't know how to call it. It is also no
-longer possible to change
`
`f` at runtime.
+longer possible to change
:func:
`f` at runtime.
Using the ``cpdef`` keyword instead of ``cdef``, a Python wrapper is also
created, so that the function is available both from Cython (fast, passing