(self, host, port=POP3_SSL_PORT,
*, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, context=None)
| 442 | """ |
| 443 | |
| 444 | def __init__(self, host, port=POP3_SSL_PORT, |
| 445 | *, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, context=None): |
| 446 | if context is None: |
| 447 | context = ssl._create_stdlib_context() |
| 448 | self.context = context |
| 449 | POP3.__init__(self, host, port, timeout) |
| 450 | |
| 451 | def _create_socket(self, timeout): |
| 452 | sock = POP3._create_socket(self, timeout) |