(self, timeout)
| 1640 | IMAP4.__init__(self, host, port, timeout) |
| 1641 | |
| 1642 | def _create_socket(self, timeout): |
| 1643 | sock = IMAP4._create_socket(self, timeout) |
| 1644 | return self.ssl_context.wrap_socket(sock, |
| 1645 | server_hostname=self.host) |
| 1646 | |
| 1647 | def open(self, host='', port=IMAP4_SSL_PORT, timeout=None): |
| 1648 | """Setup connection to remote server on "host:port". |
nothing calls this directly
no test coverage detected