Retrieve a string from the socket
(self)
| 183 | self.__swrapper.close() |
| 184 | |
| 185 | def recv_c_str(self): |
| 186 | """Retrieve a string from the socket""" |
| 187 | return self.__swrapper.recv_until_terminator().decode(self.__swrapper.receive_bytes_encoding) |
| 188 | |
| 189 | def send(self, value): |
| 190 | """Send the defined string""" |
no test coverage detected