From: ggellner@giton Date: Thu, 23 Oct 2008 03:55:44 +0000 (-0400) Subject: Changed Pyrex to Cython in special methods. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9cd1b8c21ecf4a53fbb6d92ba8d8693380873c79;p=cython.git Changed Pyrex to Cython in special methods. --- diff --git a/docs/special_methods.rst b/docs/special_methods.rst index c4df482e..f49d6a58 100644 --- a/docs/special_methods.rst +++ b/docs/special_methods.rst @@ -1,7 +1,7 @@ Special Methods of Extension Types =================================== -This page describes the special methods currently supported by Pyrex extension +This page describes the special methods currently supported by Cython extension types. A complete list of all the special methods appears in the table at the bottom. Some of these methods behave differently from their Python counterparts or have no direct Python counterparts, and require special @@ -79,7 +79,7 @@ might cause the object to be resurrected. It's best if you stick to just deallocating C data. You don't need to worry about deallocating Python attributes of your object, -because that will be done for you by Pyrex after your :meth:`__dealloc__` method +because that will be done for you by Cython after your :meth:`__dealloc__` method returns. .. Note: There is no :meth:`__del__` method for extension types.