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 ncoghlan, pitrou, sbt
Date 2013-04-20.11:47:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1366458444.78.0.586527571281.issue17800@psf.upfronthosting.co.za>
In-reply-to
Content
Sounds reasonable to me. Note that it won't remove the special-casing in gcmodule.c:

static int
has_finalizer(PyObject *op)
{
    if (PyGen_CheckExact(op))
        return PyGen_NeedsFinalizing((PyGenObject *)op);
    else
        return op->ob_type->tp_del != NULL;
}
History
Date User Action Args
2013-04-20 11:47:24pitrousetrecipients: + pitrou, ncoghlan, sbt
2013-04-20 11:47:24pitrousetmessageid: <1366458444.78.0.586527571281.issue17800@psf.upfronthosting.co.za>
2013-04-20 11:47:24pitroulinkissue17800 messages
2013-04-20 11:47:24pitroucreate