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