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 serhiy.storchaka
Recipients Ramchandra Apte, alanh, christian.heimes, ezio.melotti, jcea, mirabilos, pitrou, serhiy.storchaka, skrah, trent
Date 2013-05-11.12:55:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368276921.12.0.580547586562.issue17237@psf.upfronthosting.co.za>
In-reply-to
Content
PyASCIIObject is allocated on heap and should have a maximal alignment enough for every type. If sizeof(PyASCIIObject) % SIZEOF_LONG == 0 then dest is at least long-aligned. Currently sizeof(PyASCIIObject) is 22 on m68k and the optimization is switched off at compile time. When PyASCIIObject will grow to 24 bytes the optimization will switched on and perhaps will have some effect. I prefer checks for features instead of concrete names.
History
Date User Action Args
2013-05-11 12:55:21serhiy.storchakasetrecipients: + serhiy.storchaka, jcea, pitrou, christian.heimes, trent, ezio.melotti, alanh, skrah, Ramchandra Apte, mirabilos
2013-05-11 12:55:21serhiy.storchakasetmessageid: <1368276921.12.0.580547586562.issue17237@psf.upfronthosting.co.za>
2013-05-11 12:55:21serhiy.storchakalinkissue17237 messages
2013-05-11 12:55:21serhiy.storchakacreate