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.

作者 skrah
收信人 hct, skrah
日期 2013-11-29.11:07:38
SpamBayes Score -1.0
Marked as misclassified
Message-id <1385723259.36.0.0675293001269.issue19803@psf.upfronthosting.co.za>
In-reply-to
内容
>>> class B1(ctypes.Structure):
...     _fields_ = [("data", ctypes.c_uint8 * 256), ]
...     _pack_ = 1 
... 
>>> a= B1()
>>> x = memoryview(a)
>>> x.format
'B'

In the first case the format is 'B', in the second case the
format is:

>>> x = memoryview(b)
>>> x.format
'T{(256)<B:data:}'

While the latter is probably a valid PEP 3118 format, it's
not implemented anywhere outside ctypes See #3132.
历史
日期 用户 动作 参数
2013-11-29 11:07:39skrah修改recipients: + skrah, hct
2013-11-29 11:07:39skrah修改messageid: <1385723259.36.0.0675293001269.issue19803@psf.upfronthosting.co.za>
2013-11-29 11:07:39skrah链接issue19803 messages
2013-11-29 11:07:38skrah创建