(self, fmt)
| 31 | self._offset = 0 |
| 32 | |
| 33 | def read(self, fmt): |
| 34 | result = struct.unpack_from(fmt, self._data, self._offset) |
| 35 | self._offset += struct.calcsize(fmt) |
| 36 | return result |
| 37 | |
| 38 | def read_uint8(self): |
| 39 | return self.read('B')[0] |
no outgoing calls
no test coverage detected