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 BTaskaya
Recipients BTaskaya, David.Edelsohn, Michael.Felt, pablogsal, vstinner
Date 2020-04-13.22:18:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1586816309.41.0.344299340093.issue40244@roundup.psfhosted.org>
In-reply-to
Content
By the noticed something that looks kind of weird, not sure if it is intentional or not but shouldn't this be self instead of gen

static void
gen_dealloc(PyGenObject *gen)
{
    PyObject *self = (PyObject *) gen;
<<<<
_PyObject_GC_UNTRACK(gen);
<<<<
    if (gen->gi_weakreflist != NULL)
        PyObject_ClearWeakRefs(self);
    _PyObject_GC_TRACK(self);
History
Date User Action Args
2020-04-13 22:18:29BTaskayasetrecipients: + BTaskaya, vstinner, David.Edelsohn, Michael.Felt, pablogsal
2020-04-13 22:18:29BTaskayasetmessageid: <1586816309.41.0.344299340093.issue40244@roundup.psfhosted.org>
2020-04-13 22:18:29BTaskayalinkissue40244 messages
2020-04-13 22:18:29BTaskayacreate