(self, line)
| 120 | # Internal: send one command to the server (through _putline()) |
| 121 | |
| 122 | def _putcmd(self, line): |
| 123 | if self._debugging: print('*cmd*', repr(line)) |
| 124 | line = bytes(line, self.encoding) |
| 125 | self._putline(line) |
| 126 | |
| 127 | |
| 128 | # Internal: return one line from the server, stripping CRLF. |