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 vstinner
Recipients a-j-buxton, augustogoulart, pablogsal, rhettinger, ronaldoussoren, serhiy.storchaka, taleinat, terry.reedy, vstinner
Date 2018-11-27.13:59:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543327166.4.0.788709270274.issue33930@psf.upfronthosting.co.za>
In-reply-to
Content
-    _PyObject_GC_UNTRACK(m);
+    PyObject_GC_UnTrack(m);

Can someone please explain me why this change has any impact? Does it mean that _PyObject_GC_UNTRACK() macro has a bug?

The function is quite straighforward :-)

void
PyObject_GC_Track(void *op)
{
    _PyObject_GC_TRACK(op);
}
History
Date User Action Args
2018-11-27 13:59:26vstinnersetrecipients: + vstinner, rhettinger, terry.reedy, ronaldoussoren, taleinat, serhiy.storchaka, pablogsal, augustogoulart, a-j-buxton
2018-11-27 13:59:26vstinnersetmessageid: <1543327166.4.0.788709270274.issue33930@psf.upfronthosting.co.za>
2018-11-27 13:59:26vstinnerlinkissue33930 messages
2018-11-27 13:59:26vstinnercreate