(self, host, port, timeout)
| 1051 | source_address) |
| 1052 | |
| 1053 | def _get_socket(self, host, port, timeout): |
| 1054 | if self.debuglevel > 0: |
| 1055 | self._print_debug('connect:', (host, port)) |
| 1056 | new_socket = super()._get_socket(host, port, timeout) |
| 1057 | new_socket = self.context.wrap_socket(new_socket, |
| 1058 | server_hostname=self._host) |
| 1059 | return new_socket |
| 1060 | |
| 1061 | __all__.append("SMTP_SSL") |
| 1062 |
nothing calls this directly
no test coverage detected