(self, indentation=0)
| 1476 | return data |
| 1477 | |
| 1478 | def dump(self, indentation=0): |
| 1479 | tk = self.__keys__ |
| 1480 | self.__keys__ = self.__keys_ext__ |
| 1481 | try: |
| 1482 | ret = super(StructureWithBitfields, self).dump(indentation) |
| 1483 | finally: |
| 1484 | self.__keys__ = tk |
| 1485 | return ret |
| 1486 | |
| 1487 | def dump_dict(self): |
| 1488 | tk = self.__keys__ |