Commit 9526f6b6 authored by Stefan Behnel's avatar Stefan Behnel

minor doc clarification

parent 3772b055
...@@ -48,8 +48,8 @@ fast for use from Cython and one slower for use from Python. Then:: ...@@ -48,8 +48,8 @@ fast for use from Cython and one slower for use from Python. Then::
This does slightly more than providing a python wrapper for a cdef This does slightly more than providing a python wrapper for a cdef
method: unlike a cdef method, a cpdef method is fully overrideable by method: unlike a cdef method, a cpdef method is fully overrideable by
subclasses and instance attributes. This adds a little calling overhead methods and instance attributes in Python subclasses. It adds a
compared to a cdef method. little calling overhead compared to a cdef method.
Using this, we can now change our integration example:: Using this, we can now change our integration example::
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment