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 mirabilos
Recipients Ramchandra Apte, alanh, christian.heimes, ezio.melotti, jcea, mirabilos, pitrou, serhiy.storchaka, skrah, trent
Date 2013-05-10.21:55:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368222941.23.0.669868899203.issue17237@psf.upfronthosting.co.za>
In-reply-to
Content
+       dest is always aligned on common platforms                                                               
+       (if sizeof(PyASCIIObject) is divisible by SIZEOF_LONG).                                                  

Actually, that’s the part that is not true. On m68k, and perfectly
permitted by the C standard, even a 24-byte object has only a
guaranteed alignment of 2 bytes (or one, if it’s a char array)
in the normal case (contains integers and pointers, nothing special).

We patched out this bogus assumption from things like glib already ;)
History
Date User Action Args
2013-05-10 21:55:41mirabilossetrecipients: + mirabilos, jcea, pitrou, christian.heimes, trent, ezio.melotti, alanh, skrah, Ramchandra Apte, serhiy.storchaka
2013-05-10 21:55:41mirabilossetmessageid: <1368222941.23.0.669868899203.issue17237@psf.upfronthosting.co.za>
2013-05-10 21:55:41mirabiloslinkissue17237 messages
2013-05-10 21:55:41mirabiloscreate