(
self, host: str, port: int, family: socket.AddressFamily = socket.AF_UNSPEC
)
| 478 | |
| 479 | @run_on_executor |
| 480 | def resolve( |
| 481 | self, host: str, port: int, family: socket.AddressFamily = socket.AF_UNSPEC |
| 482 | ) -> List[Tuple[int, Any]]: |
| 483 | return _resolve_addr(host, port, family) |
| 484 | |
| 485 | |
| 486 | class BlockingResolver(ExecutorResolver): |
nothing calls this directly
no test coverage detected