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 scoder
Recipients scoder, vstinner
Date 2020-06-17.06:35:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1592375700.62.0.581786996954.issue40989@roundup.psfhosted.org>
In-reply-to
Content
To add to the list, Cython also calls _Py_NewReference() in its async generator code, which uses a free-list. That code was mostly copied from the CPython-internal implementation.

Other freelist implementations in Cython call PyObject_INIT() instead, so I guess calling _Py_NewReference() directly here isn't actually required and could be avoided.
History
Date User Action Args
2020-06-17 06:35:00scodersetrecipients: + scoder, vstinner
2020-06-17 06:35:00scodersetmessageid: <1592375700.62.0.581786996954.issue40989@roundup.psfhosted.org>
2020-06-17 06:35:00scoderlinkissue40989 messages
2020-06-17 06:35:00scodercreate