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