(*args, **kwargs)
| 929 | connected = False |
| 930 | |
| 931 | async def sock_connect(*args, **kwargs): |
| 932 | addr = args[1] |
| 933 | nonlocal os_error |
| 934 | |
| 935 | addrs_tried.append(addr) |
| 936 | |
| 937 | if addr[0] == ip1: |
| 938 | os_error = True |
| 939 | raise OSError |
| 940 | |
| 941 | async def create_connection(*args, **kwargs): |
| 942 | sock: socket.socket = kwargs["sock"] |
nothing calls this directly
no test coverage detected
searching dependent graphs…