(self, host, port=POP3_SSL_PORT,
*, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, context=None)
| 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) |