""" Class for a basic DataBlock inside of the DS_Store format. """ def __init__(self, data, debug=False): super(DataBlock, self).__init__() self.data = data self.pos = 0 self.debug = debugdef offset_read(self, length, offset=None): ...