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 bgailer, georg.brandl, vstinner
Date 2009-02-05.10:46:52
SpamBayes Score 4.2006413e-05
Marked as misclassified No
Message-id <1233830813.42.0.156777317454.issue5145@psf.upfronthosting.co.za>
In-reply-to
Content
The default endiand and alignment is "native". Using <, >, = or ! 
endian, the alignement is standard.

Python 3.1a0 (py3k:69105M, Feb  3 2009, 15:04:35)
>>> struct.calcsize('cd')
12
>>> struct.calcsize('=cd')
9
>>> struct.calcsize('<cd')
9
History
Date User Action Args
2009-02-05 10:46:53vstinnersetrecipients: + vstinner, georg.brandl, bgailer
2009-02-05 10:46:53vstinnersetmessageid: <1233830813.42.0.156777317454.issue5145@psf.upfronthosting.co.za>
2009-02-05 10:46:52vstinnerlinkissue5145 messages
2009-02-05 10:46:52vstinnercreate