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 Howard_Landman
Recipients Howard_Landman
Date 2020-07-26.19:14:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1595790898.38.0.657972312692.issue41335@roundup.psfhosted.org>
In-reply-to
Content
After a quick glance at the source code for the spidev library, I think it is unlikely but not impossible to be the home for the bug. It does do malloc() and free(), but only for data that is greater than 256 bytes. Short tx and rx data is kept in static local buffers. Also, these calls do not match the partial stack trace I got. There is a small amount of allocating and deallocating Python objects, however, including calls to PyList_New(), PyList_SET_ITEM(), and Py_TYPE(self)->tp_free((PyObject *)self), so it's possible that the bug is buried under one of those.
History
Date User Action Args
2020-07-26 19:14:58Howard_Landmansetrecipients: + Howard_Landman
2020-07-26 19:14:58Howard_Landmansetmessageid: <1595790898.38.0.657972312692.issue41335@roundup.psfhosted.org>
2020-07-26 19:14:58Howard_Landmanlinkissue41335 messages
2020-07-26 19:14:58Howard_Landmancreate