(self)
| 1485 | return ret |
| 1486 | |
| 1487 | def dump_dict(self): |
| 1488 | tk = self.__keys__ |
| 1489 | self.__keys__ = self.__keys_ext__ |
| 1490 | try: |
| 1491 | ret = super(StructureWithBitfields, self).dump_dict() |
| 1492 | finally: |
| 1493 | self.__keys__ = tk |
| 1494 | return ret |
| 1495 | |
| 1496 | def _unpack_bitfield_attributes(self): |
| 1497 | """Replace compound attributes corresponding to bitfields with separate |