Message366152
/* Test if an object has a GC head */
#define PyObject_IS_GC(o) \
(PyType_IS_GC(Py_TYPE(o)) \
&& (Py_TYPE(o)->tp_is_gc == NULL || Py_TYPE(o)->tp_is_gc(o)))
This macro should be converted to an opaque function. |
|
| Date |
User |
Action |
Args |
| 2020-04-10 20:41:48 | vstinner | set | recipients:
+ vstinner, Michael.Felt, corona10, shihai1991, petdance |
| 2020-04-10 20:41:48 | vstinner | set | messageid: <1586551308.59.0.223480955136.issue40170@roundup.psfhosted.org> |
| 2020-04-10 20:41:48 | vstinner | link | issue40170 messages |
| 2020-04-10 20:41:48 | vstinner | create | |
|