(self)
| 1468 | self._unpack_bitfield_attributes() |
| 1469 | |
| 1470 | def __pack__(self): |
| 1471 | self._pack_bitfield_attributes() |
| 1472 | try: |
| 1473 | data = super(StructureWithBitfields, self).__pack__() |
| 1474 | finally: |
| 1475 | self._unpack_bitfield_attributes() |
| 1476 | return data |
| 1477 | |
| 1478 | def dump(self, indentation=0): |
| 1479 | tk = self.__keys__ |
nothing calls this directly
no test coverage detected