This commit is contained in:
Berker Peksag 2014-09-28 00:01:55 +03:00
commit 131caba074
18 changed files with 6 additions and 38 deletions

View file

@ -983,7 +983,6 @@ done. This can be done using the :c:func:`PyErr_Fetch` and
}
.. note::
There are limitations to what you can safely do in a deallocator function.
First, if your type supports garbage collection (using :c:member:`~PyTypeObject.tp_traverse`
and/or :c:member:`~PyTypeObject.tp_clear`), some of the object's members can have been
@ -998,7 +997,6 @@ done. This can be done using the :c:func:`PyErr_Fetch` and
:c:member:`~PyTypeObject.tp_finalize` type method.
.. seealso::
:pep:`442` explains the new finalization scheme.
.. index::