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 vstinner
Recipients benjamin.peterson, pitrou, vstinner
Date 2017-10-24.15:33:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1508859237.58.0.213398074469.issue27987@psf.upfronthosting.co.za>
In-reply-to
Content
What matters when a Python object is allocated? The start of the PyObject structure, or the start of the PyGC_Head structure? Would it be possible to align the PyObject start?

The simplest option is to store data which needs to be aligned in a second memory block allocated by PyMem_AlignedAlloc().
History
Date User Action Args
2017-10-24 15:33:57vstinnersetrecipients: + vstinner, pitrou, benjamin.peterson
2017-10-24 15:33:57vstinnersetmessageid: <1508859237.58.0.213398074469.issue27987@psf.upfronthosting.co.za>
2017-10-24 15:33:57vstinnerlinkissue27987 messages
2017-10-24 15:33:57vstinnercreate