From 9526f6b6ea04d0b6571afc47038b9ccd8af81ced Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 5 Sep 2013 18:47:56 +0200 Subject: [PATCH] minor doc clarification --- docs/src/tutorial/cdef_classes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/tutorial/cdef_classes.rst b/docs/src/tutorial/cdef_classes.rst index 2791735..8c8761d 100644 --- a/docs/src/tutorial/cdef_classes.rst +++ b/docs/src/tutorial/cdef_classes.rst @@ -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 method: unlike a cdef method, a cpdef method is fully overrideable by -subclasses and instance attributes. This adds a little calling overhead -compared to a cdef method. +methods and instance attributes in Python subclasses. It adds a +little calling overhead compared to a cdef method. Using this, we can now change our integration example:: -- 2.7.4