Message 399686 - Python tracker

Message399686

Author nascheme
Recipients nascheme, pablogsal, tim.peters, vstinner
Date 2021-08-16.21:40:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629150017.75.0.914587184895.issue44881@roundup.psfhosted.org>
In-reply-to
Content
Another small correction, _PyType_IS_GC() checks only the type flag (Py_TPFLAGS_HAVE_GC).  _PyObject_IS_GC() checks both the type flag and calls tp_is_gc(), if it exists.  tp_is_gc() is wart, IMHO, and it would be nice if we can kill it off so only the type flag is needed.  That's a topic for a different issue though.
History
Date User Action Args
2021-08-16 21:40:17naschemesetrecipients: + nascheme, tim.peters, vstinner, pablogsal
2021-08-16 21:40:17naschemesetmessageid: <1629150017.75.0.914587184895.issue44881@roundup.psfhosted.org>
2021-08-16 21:40:17naschemelinkissue44881 messages
2021-08-16 21:40:17naschemecreate