From: Stefan Behnel Date: Thu, 5 Sep 2013 16:47:56 +0000 (+0200) Subject: minor doc clarification X-Git-Tag: 0.20b1~335 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9526f6b6ea04d0b6571afc47038b9ccd8af81ced;p=platform%2Fupstream%2Fpython-cython.git minor doc clarification --- 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::