Connects to remote ADDR, and then wraps the connection in an SSL channel.
(self, addr)
| 1410 | raise |
| 1411 | |
| 1412 | def connect(self, addr): |
| 1413 | """Connects to remote ADDR, and then wraps the connection in |
| 1414 | an SSL channel.""" |
| 1415 | self._real_connect(addr, False) |
| 1416 | |
| 1417 | def connect_ex(self, addr): |
| 1418 | """Connects to remote ADDR, and then wraps the connection in |
no test coverage detected