(self, data)
| 1462 | self.name = name if name != None else format[0] |
| 1463 | |
| 1464 | def __unpack__(self, data): |
| 1465 | # calling the original routine to deal with special cases/spurious data |
| 1466 | # structures |
| 1467 | super(StructureWithBitfields, self).__unpack__(data) |
| 1468 | self._unpack_bitfield_attributes() |
| 1469 | |
| 1470 | def __pack__(self): |
| 1471 | self._pack_bitfield_attributes() |
nothing calls this directly
no test coverage detected