(self, host, port, timeout)
| 1035 | source_address) |
| 1036 | |
| 1037 | def _get_socket(self, host, port, timeout): |
| 1038 | if self.debuglevel > 0: |
| 1039 | self._print_debug('connect:', (host, port)) |
| 1040 | new_socket = super()._get_socket(host, port, timeout) |
| 1041 | new_socket = self.context.wrap_socket(new_socket, |
| 1042 | server_hostname=self._host) |
| 1043 | return new_socket |
| 1044 | |
| 1045 | __all__.append("SMTP_SSL") |
| 1046 |
nothing calls this directly
no test coverage detected