Connects to remote ADDR, and then wraps the connection in an SSL channel.
(self, addr)
| 1451 | raise |
| 1452 | |
| 1453 | def connect(self, addr): |
| 1454 | """Connects to remote ADDR, and then wraps the connection in |
| 1455 | an SSL channel.""" |
| 1456 | self._real_connect(addr, False) |
| 1457 | |
| 1458 | def connect_ex(self, addr): |
| 1459 | """Connects to remote ADDR, and then wraps the connection in |
no test coverage detected