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

Method _create_socket

Lib/poplib.py:449–453  ·  view source on GitHub ↗
(self, timeout)

Source from the content-addressed store, hash-verified

447 POP3.__init__(self, host, port, timeout)
448
449 def _create_socket(self, timeout):
450 sock = POP3._create_socket(self, timeout)
451 sock = self.context.wrap_socket(sock,
452 server_hostname=self.host)
453 return sock
454
455 def stls(self, context=None):
456 """The method unconditionally raises an exception since the

Callers

nothing calls this directly

Calls 2

wrap_socketMethod · 0.80
_create_socketMethod · 0.45

Tested by

no test coverage detected