(self, timeout)
| 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 |
nothing calls this directly
no test coverage detected