(self, line)
| 203 | |
| 204 | # Internal: send one command to the server (through putline()) |
| 205 | def putcmd(self, line): |
| 206 | if self.debugging: print('*cmd*', self.sanitize(line)) |
| 207 | self.putline(line) |
| 208 | |
| 209 | # Internal: return one line from the server, stripping CRLF. |
| 210 | # Raise EOFError if the connection is closed |