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 christian.heimes
Recipients Howard_Landman, christian.heimes, stestagg
Date 2020-07-23.14:15:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1595513720.81.0.346193527845.issue41335@roundup.psfhosted.org>
In-reply-to
Content
Correction, _int_free() is an internal function of malloc().

small_ints.lto_priv+72 looks like deallocation of an integer object at location +72. This is either int 4 (on 64bit platforms) or int 13 (on 32bit platforms):

>>> NSMALLNEGINTS = 5
>>> (4 + NSMALLNEGINTS) * 8
72
>>> (13 + NSMALLNEGINTS) * 4
72

Could you please report the issue with RPi package owner? This looks like a bug in a 3rd party module.
History
Date User Action Args
2020-07-23 14:15:20christian.heimessetrecipients: + christian.heimes, stestagg, Howard_Landman
2020-07-23 14:15:20christian.heimessetmessageid: <1595513720.81.0.346193527845.issue41335@roundup.psfhosted.org>
2020-07-23 14:15:20christian.heimeslinkissue41335 messages
2020-07-23 14:15:20christian.heimescreate