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 pablogsal
Recipients Mark.Shannon, christian.heimes, jdemeyer, lukasz.langa, pablogsal, petr.viktorin, pitrou, vstinner
Date 2019-09-02.16:26:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567441562.52.0.799099583767.issue38006@roundup.psfhosted.org>
In-reply-to
Content
Wait, I just checked and the call is done manually:

static void
ctypedescr_dealloc(CTypeDescrObject *ct)
{
    PyObject_GC_UnTrack(ct);
    if (ct->ct_weakreflist != NULL)
        PyObject_ClearWeakRefs((PyObject *) ct);

I am not sure call to PyObject_ClearWeakRefs from tp_dealloc is safe.
History
Date User Action Args
2019-09-02 19:38:25pablogsalunlinkissue38006 messages
2019-09-02 16:26:02pablogsalsetrecipients: + pablogsal, pitrou, vstinner, christian.heimes, petr.viktorin, lukasz.langa, Mark.Shannon, jdemeyer
2019-09-02 16:26:02pablogsalsetmessageid: <1567441562.52.0.799099583767.issue38006@roundup.psfhosted.org>
2019-09-02 16:26:02pablogsallinkissue38006 messages
2019-09-02 16:26:02pablogsalcreate