(self, line)
| 112 | return socket.create_connection((self.host, self.port), timeout) |
| 113 | |
| 114 | def _putline(self, line): |
| 115 | if self._debugging > 1: print('*put*', repr(line)) |
| 116 | sys.audit("poplib.putline", self, line) |
| 117 | self.sock.sendall(line + CRLF) |
| 118 | |
| 119 | |
| 120 | # Internal: send one command to the server (through _putline()) |