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

Method read

mypy/types.py:1138–1146  ·  view source on GitHub ↗
(cls, data: ReadBuffer)

Source from the content-addressed store, hash-verified

1136
1137 @classmethod
1138 def read(cls, data: ReadBuffer) -> UnboundType:
1139 ret = UnboundType(
1140 read_str(data),
1141 read_type_list(data),
1142 original_str_expr=read_str_opt(data),
1143 original_str_fallback=read_str_opt(data),
1144 )
1145 assert read_tag(data) == END_TAG
1146 return ret
1147
1148
1149class CallableArgument(ProperType):

Callers

nothing calls this directly

Calls 4

read_strFunction · 0.90
read_str_optFunction · 0.90
UnboundTypeClass · 0.85
read_type_listFunction · 0.85

Tested by

no test coverage detected