(self, timeout)
| 449 | POP3.__init__(self, host, port, timeout) |
| 450 | |
| 451 | def _create_socket(self, timeout): |
| 452 | sock = POP3._create_socket(self, timeout) |
| 453 | sock = self.context.wrap_socket(sock, |
| 454 | server_hostname=self.host) |
| 455 | return sock |
| 456 | |
| 457 | def stls(self, context=None): |
| 458 | """The method unconditionally raises an exception since the |
nothing calls this directly
no test coverage detected