MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Lib/poplib.py:444–449  ·  view source on GitHub ↗
(self, host, port=POP3_SSL_PORT,
                     *, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, context=None)

Source from the content-addressed store, hash-verified

442 """
443
444 def __init__(self, host, port=POP3_SSL_PORT,
445 *, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, context=None):
446 if context is None:
447 context = ssl._create_stdlib_context()
448 self.context = context
449 POP3.__init__(self, host, port, timeout)
450
451 def _create_socket(self, timeout):
452 sock = POP3._create_socket(self, timeout)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected