Connects to remote ADDR, and then wraps the connection in an SSL channel.
(self, addr)
| 1405 | self._real_connect(addr, False) |
| 1406 | |
| 1407 | def connect_ex(self, addr): |
| 1408 | """Connects to remote ADDR, and then wraps the connection in |
| 1409 | an SSL channel.""" |
| 1410 | return self._real_connect(addr, True) |
| 1411 | |
| 1412 | def accept(self): |
| 1413 | """Accepts a new connection from a remote client, and returns |