(self)
| 141 | return self.read_binary().decode() |
| 142 | |
| 143 | def read_binary(self): |
| 144 | length = self.read_uint32() |
| 145 | data = self._buffer[self._cursor:self._cursor+length] |
| 146 | self._cursor += length |
| 147 | return data |
| 148 | |
| 149 | def start_read_list(self): |
| 150 | """ Function which should be called on list de-serialization. |
no test coverage detected