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