Commit 9cd1b8c2 authored by ggellner@giton's avatar ggellner@giton

Changed Pyrex to Cython in special methods.

parent df797e1b
Special Methods of Extension Types 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 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 bottom. Some of these methods behave differently from their Python
counterparts or have no direct Python counterparts, and require special 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 ...@@ -79,7 +79,7 @@ might cause the object to be resurrected. It's best if you stick to just
deallocating C data. deallocating C data.
You don't need to worry about deallocating Python attributes of your object, 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. returns.
.. Note: There is no :meth:`__del__` method for extension types. .. Note: There is no :meth:`__del__` method for extension types.
......
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