(
self, host: str, port: int, family: socket.AddressFamily = socket.AF_UNSPEC
)
| 414 | """ |
| 415 | |
| 416 | async def resolve( |
| 417 | self, host: str, port: int, family: socket.AddressFamily = socket.AF_UNSPEC |
| 418 | ) -> List[Tuple[int, Any]]: |
| 419 | result = await IOLoop.current().run_in_executor( |
| 420 | None, _resolve_addr, host, port, family |
| 421 | ) |
| 422 | return result |
| 423 | |
| 424 | |
| 425 | class DefaultLoopResolver(Resolver): |
nothing calls this directly
no test coverage detected