Send the defined string
(self, value)
| 187 | return self.__swrapper.recv_until_terminator().decode(self.__swrapper.receive_bytes_encoding) |
| 188 | |
| 189 | def send(self, value): |
| 190 | """Send the defined string""" |
| 191 | self.__swrapper.sendall(value + chr(0)) |
| 192 | |
| 193 | def __send_input(self, code, arg, content): |
| 194 | """internal. don't care.""" |