Commit 1308c26c authored by Thomas Heller's avatar Thomas Heller

Merged revisions 66611 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r66611 | thomas.heller | 2008-09-24 20:26:05 +0200 (Mi, 24 Sep 2008) | 3 lines

  Fix issue #3547: ctypes is confused by bitfields of varying integer types

  Reviewed by Fredrik Lundh and Skip Montanaro.
........
parent 05f5ab7e
...@@ -215,6 +215,21 @@ class BitFieldTest(unittest.TestCase): ...@@ -215,6 +215,21 @@ class BitFieldTest(unittest.TestCase):
("b", c_ubyte, 4)] ("b", c_ubyte, 4)]
self.failUnlessEqual(sizeof(X), sizeof(c_byte)) self.failUnlessEqual(sizeof(X), sizeof(c_byte))
def test_mixed_4(self):
class X(Structure):
_fields_ = [("a", c_short, 4),
("b", c_short, 4),
("c", c_int, 24),
("d", c_short, 4),
("e", c_short, 4),
("f", c_int, 24)]
# MS compilers do NOT combine c_short and c_int into
# one field, gcc does.
if os.name in ("nt", "ce"):
self.failUnlessEqual(sizeof(X), sizeof(c_int) * 4)
else:
self.failUnlessEqual(sizeof(X), sizeof(c_int) * 2)
def test_anon_bitfields(self): def test_anon_bitfields(self):
# anonymous bit-fields gave a strange error message # anonymous bit-fields gave a strange error message
class X(Structure): class X(Structure):
......
...@@ -20,6 +20,9 @@ Library ...@@ -20,6 +20,9 @@ Library
- Bug #3884: Make the turtle module toplevel again. - Bug #3884: Make the turtle module toplevel again.
- Issue #3547: Fixed ctypes structures bitfields of varying integer
sizes.
Extension Modules Extension Modules
----------------- -----------------
......
...@@ -159,7 +159,7 @@ CField_FromDesc(PyObject *desc, Py_ssize_t index, ...@@ -159,7 +159,7 @@ CField_FromDesc(PyObject *desc, Py_ssize_t index,
break; break;
case EXPAND_BITFIELD: case EXPAND_BITFIELD:
/* XXX needs more */ *poffset += dict->size - *pfield_size/8;
*psize += dict->size - *pfield_size/8; *psize += dict->size - *pfield_size/8;
*pfield_size = dict->size * 8; *pfield_size = dict->size * 8;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment