MCPcopy Create free account
hub / github.com/EasyIME/PIME / resolve

Method resolve

python/python3/tornado/netutil.py:411–417  ·  view source on GitHub ↗
(
        self, host: str, port: int, family: socket.AddressFamily = socket.AF_UNSPEC
    )

Source from the content-addressed store, hash-verified

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
420class DefaultLoopResolver(Resolver):

Callers

nothing calls this directly

Calls 2

currentMethod · 0.80
run_in_executorMethod · 0.45

Tested by

no test coverage detected