MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

Lib/imaplib.py:1636–1641  ·  view source on GitHub ↗
(self, host='', port=IMAP4_SSL_PORT,
                     *, ssl_context=None, timeout=None)

Source from the content-addressed store, hash-verified

1634
1635
1636 def __init__(self, host='', port=IMAP4_SSL_PORT,
1637 *, ssl_context=None, timeout=None):
1638 if ssl_context is None:
1639 ssl_context = ssl._create_stdlib_context()
1640 self.ssl_context = ssl_context
1641 IMAP4.__init__(self, host, port, timeout)
1642
1643 def _create_socket(self, timeout):
1644 sock = IMAP4._create_socket(self, timeout)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected