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 SylvainDe, knzsys, serhiy.storchaka
Date 2017-06-20.15:05:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1497971148.22.0.575300650522.issue30712@psf.upfronthosting.co.za>
In-reply-to
Content
Don't forget about an alignment. If the first character is not one of '@', '=', '<', '>' or '!', '@' is assumed, which means native byte order, type sizes and alignments. If the 'f' format character require 4-byte alignment, 2 padding bytes are inserted before the first 'f' item.

Add the '=' character at the start of the format string if you need native byte order, "standard" type sizes and no alignments. Add the '<' or '>' characters if you need some specific byte order.
History
Date User Action Args
2017-06-20 15:05:48serhiy.storchakasetrecipients: + serhiy.storchaka, SylvainDe, knzsys
2017-06-20 15:05:48serhiy.storchakasetmessageid: <1497971148.22.0.575300650522.issue30712@psf.upfronthosting.co.za>
2017-06-20 15:05:48serhiy.storchakalinkissue30712 messages
2017-06-20 15:05:47serhiy.storchakacreate