Commit 13ec8f0d authored by gabrieldemarmiesse's avatar gabrieldemarmiesse

Swapped the notes.

parent 86cca573
...@@ -71,14 +71,6 @@ your :meth:`__cinit__`` method to take no arguments (other than self) it ...@@ -71,14 +71,6 @@ your :meth:`__cinit__`` method to take no arguments (other than self) it
will simply ignore any extra arguments passed to the constructor without will simply ignore any extra arguments passed to the constructor without
complaining about the signature mismatch. complaining about the signature mismatch.
.. Note::
Older Cython files may use :meth:`__new__` rather than :meth:`__cinit__`. The two are synonyms.
The name change from :meth:`__new__` to :meth:`__cinit__` was to avoid
confusion with Python :meth:`__new__` (which is an entirely different
concept) and eventually the use of :meth:`__new__` in Cython will be
disallowed to pave the way for supporting Python-style :meth:`__new__`
.. Note:: .. Note::
All constructor arguments will be passed as Python objects. All constructor arguments will be passed as Python objects.
...@@ -88,6 +80,14 @@ complaining about the signature mismatch. ...@@ -88,6 +80,14 @@ complaining about the signature mismatch.
It often helps to directly call ``__new__()`` in this function to bypass the It often helps to directly call ``__new__()`` in this function to bypass the
call to the ``__init__()`` constructor. call to the ``__init__()`` constructor.
.. Note::
Older Cython files may use :meth:`__new__` rather than :meth:`__cinit__`. The two are synonyms.
The name change from :meth:`__new__` to :meth:`__cinit__` was to avoid
confusion with Python :meth:`__new__` (which is an entirely different
concept) and eventually the use of :meth:`__new__` in Cython will be
disallowed to pave the way for supporting Python-style :meth:`__new__`
.. [#] http://docs.python.org/reference/datamodel.html#object.__new__ .. [#] http://docs.python.org/reference/datamodel.html#object.__new__
Finalization method: :meth:`__dealloc__` Finalization method: :meth:`__dealloc__`
......
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