MCPcopy Index your code
hub / github.com/python/mypy / TypeTransformVisitor

Class TypeTransformVisitor

mypy/checker.py:9003–9009  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9001
9002
9003class TypeTransformVisitor(TransformVisitor):
9004 def __init__(self, map: dict[TypeVarId, Type]) -> None:
9005 super().__init__()
9006 self.map = map
9007
9008 def type(self, type: Type) -> Type:
9009 return expand_type(type, self.map)
9010
9011
9012def are_argument_counts_overlapping(t: CallableType, s: CallableType) -> bool:

Callers 1

expand_funcFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…