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 vstinner
Date 2020-04-10.00:06:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1586477217.84.0.636524531783.issue40241@roundup.psfhosted.org>
In-reply-to
Content
The following macros rely on PyGC_Head:

* _PyGCHead_FINALIZED()
* _PyGCHead_NEXT()
* _PyGCHead_PREV()
* _PyGCHead_SET_FINALIZED()
* _PyGCHead_SET_NEXT()
* _PyGCHead_SET_PREV()
* _PyGC_FINALIZED()
* _PyGC_PREV_MASK
* _PyGC_PREV_MASK_COLLECTING
* _PyGC_PREV_MASK_FINALIZED
* _PyGC_PREV_SHIFT
* _PyGC_SET_FINALIZED()
* _PyObject_GC_IS_TRACKED()
* _PyObject_GC_MAY_BE_TRACKED()
* _Py_AS_GC()

_testcapi uses _PyObject_GC_IS_TRACKED() and sizeof(PyGC_Head).
History
Date User Action Args
2020-04-10 00:06:57vstinnersetrecipients: + vstinner
2020-04-10 00:06:57vstinnersetmessageid: <1586477217.84.0.636524531783.issue40241@roundup.psfhosted.org>
2020-04-10 00:06:57vstinnerlinkissue40241 messages
2020-04-10 00:06:57vstinnercreate