This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients kristjan.jonsson, pitrou, tim.peters
Date 2010-07-04.15:34:26
SpamBayes Score 0.062370833
Marked as misclassified No
Message-id <1278257661.3250.7.camel@localhost.localdomain>
In-reply-to <1278257081.73.0.16668625991.issue9141@psf.upfronthosting.co.za>
Content
> GC only cares that during the final release of any objects in a
> reference cycle, no non-trivial code may run (for various technical
> reasons).  So, objects deemed "sensitive" in this way, are left alone
> (and put in gc.garbage instead).

Which is really the problem, and why you should prefer tp_dealloc over
tp_del.
(unless you want gc.garbage to fill up too easily)
History
Date User Action Args
2010-07-04 15:34:27pitrousetrecipients: + pitrou, tim.peters, kristjan.jonsson
2010-07-04 15:34:26pitroulinkissue9141 messages
2010-07-04 15:34:26pitroucreate