Connects to remote ADDR, and then wraps the connection in an SSL channel.
(self, addr)
| 1456 | self._real_connect(addr, False) |
| 1457 | |
| 1458 | def connect_ex(self, addr): |
| 1459 | """Connects to remote ADDR, and then wraps the connection in |
| 1460 | an SSL channel.""" |
| 1461 | return self._real_connect(addr, True) |
| 1462 | |
| 1463 | def accept(self): |
| 1464 | """Accepts a new connection from a remote client, and returns |