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

Method __init__

Lib/poplib.py:442–447  ·  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

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

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected