Commit dfa53ea8 authored by Stefan Behnel's avatar Stefan Behnel

Clarify comment on .pxd file usage in docs.

parent e858f582
...@@ -41,8 +41,9 @@ method: unlike a cdef method, a cpdef method is fully overridable by ...@@ -41,8 +41,9 @@ method: unlike a cdef method, a cpdef method is fully overridable by
methods and instance attributes in Python subclasses. It adds a methods and instance attributes in Python subclasses. It adds a
little calling overhead compared to a cdef method. little calling overhead compared to a cdef method.
To make the classes reusable across modules, we define them To make the class definitions visible to other modules, and thus allow for
in a :file:`sin_of_square.pxd` file: efficient C-level usage and inheritance outside of the module that
implements them, we define them in a :file:`sin_of_square.pxd` file:
.. literalinclude:: ../../examples/tutorial/cdef_classes/sin_of_square.pxd .. literalinclude:: ../../examples/tutorial/cdef_classes/sin_of_square.pxd
......
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