(self, timeout)
| 1323 | IMAP4.__init__(self, host, port, timeout) |
| 1324 | |
| 1325 | def _create_socket(self, timeout): |
| 1326 | sock = IMAP4._create_socket(self, timeout) |
| 1327 | return self.ssl_context.wrap_socket(sock, |
| 1328 | server_hostname=self.host) |
| 1329 | |
| 1330 | def open(self, host='', port=IMAP4_SSL_PORT, timeout=None): |
| 1331 | """Setup connection to remote server on "host:port". |
nothing calls this directly
no test coverage detected