(*args, **kwds)
| 922 | return [(family, socket.SOCK_STREAM, 6, '', (host, port, 0, 0))] |
| 923 | |
| 924 | def getaddrinfo_task(*args, **kwds): |
| 925 | return self.loop.create_task(getaddrinfo(*args, **kwds)) |
| 926 | |
| 927 | unique_hosts = set(hosts) |
| 928 |
nothing calls this directly
no test coverage detected