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.

作者 pitrou
收信人 belopolsky, georg.brandl, jimjjewett, ked-tao, loewis, mark.dickinson, pitrou, rhettinger, tim.peters
日期 2010-09-04.22:12:39
SpamBayes Score 1.2867113e-08
Marked as misclassified
Message-id <1283638362.94.0.53061666956.issue9778@psf.upfronthosting.co.za>
In-reply-to
内容
As an example of padding behaviour (under Win64 with 32-bit longs and 64-bit pointers):

Python 3.2a1+ (py3k, Sep  4 2010, 22:50:10) [MSC v.1500 64 bit (AMD64)] on win32

Type "help", "copyright", "credits" or "license" for more information.
>>> import struct
>>> struct.calcsize("l")
4
>>> struct.calcsize("lP")
16
>>> struct.calcsize("lPP")
24
历史
日期 用户 动作 参数
2010-09-04 22:12:43pitrou修改recipients: + pitrou, tim.peters, loewis, georg.brandl, rhettinger, jimjjewett, mark.dickinson, belopolsky, ked-tao
2010-09-04 22:12:42pitrou修改messageid: <1283638362.94.0.53061666956.issue9778@psf.upfronthosting.co.za>
2010-09-04 22:12:40pitrou链接issue9778 messages
2010-09-04 22:12:39pitrou创建