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 Alex.Leach, benjamin.peterson, book book, docs@python, gagern, georg.brandl, pitrou, ronaldoussoren, stutzbach
Date 2018-05-12.18:12:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1526148760.66.0.682650639539.issue4934@psf.upfronthosting.co.za>
In-reply-to
Content
The reason tp_del has remained undocumented is that it's now obsolete.  You should use tp_finalize instead:
https://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_finalize

tp_finalize is roughly the C equivalent of __del__ (tp_del was something else, despite the name).
History
Date User Action Args
2018-05-12 18:12:40pitrousetrecipients: + pitrou, georg.brandl, ronaldoussoren, gagern, benjamin.peterson, stutzbach, docs@python, Alex.Leach, book book
2018-05-12 18:12:40pitrousetmessageid: <1526148760.66.0.682650639539.issue4934@psf.upfronthosting.co.za>
2018-05-12 18:12:40pitroulinkissue4934 messages
2018-05-12 18:12:40pitroucreate