Changed Pyrex to Cython in special methods.
authorggellner@giton <none@none>
Thu, 23 Oct 2008 03:55:44 +0000 (23:55 -0400)
committerggellner@giton <none@none>
Thu, 23 Oct 2008 03:55:44 +0000 (23:55 -0400)
docs/special_methods.rst

index c4df482e55c7633a9aafbb84b69f32e07cbeaa45..f49d6a58ef277f344379e151158583180e36cd82 100644 (file)
@@ -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.