Connects to remote ADDR, and then wraps the connection in an SSL channel.
(self, addr)
| 1415 | self._real_connect(addr, False) |
| 1416 | |
| 1417 | def connect_ex(self, addr): |
| 1418 | """Connects to remote ADDR, and then wraps the connection in |
| 1419 | an SSL channel.""" |
| 1420 | return self._real_connect(addr, True) |
| 1421 | |
| 1422 | def accept(self): |
| 1423 | """Accepts a new connection from a remote client, and returns |
no test coverage detected