(self)
| 129 | return result |
| 130 | |
| 131 | def read_uint64(self): |
| 132 | result = struct.unpack_from("<Q", self._data, self._position)[0] |
| 133 | self._position += 8 |
| 134 | return result |
| 135 | |
| 136 | def read_string(self): |
| 137 | end_pos = self._data.find(b"\0", self._position) |
no outgoing calls
no test coverage detected