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 pitrou
Recipients Ramchandra Apte, alanh, christian.heimes, ezio.melotti, jcea, mirabilos, pitrou, serhiy.storchaka, skrah, trent
Date 2013-05-11.12:58:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368277106.2537.4.camel@fsol>
In-reply-to <1368276921.12.0.580547586562.issue17237@psf.upfronthosting.co.za>
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.

This is a bugfix, please let's keep it simple. Checking for __m68k__
ensures that other architectures aren't affected by mistake.
History
Date User Action Args
2013-05-11 12:58:28pitrousetrecipients: + pitrou, jcea, christian.heimes, trent, ezio.melotti, alanh, skrah, Ramchandra Apte, serhiy.storchaka, mirabilos
2013-05-11 12:58:28pitroulinkissue17237 messages
2013-05-11 12:58:28pitroucreate