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

Method read

mypy/nodes.py:3319–3328  ·  view source on GitHub ↗
(cls, data: ReadBuffer)

Source from the content-addressed store, hash-verified

3317
3318 @classmethod
3319 def read(cls, data: ReadBuffer) -> ParamSpecExpr:
3320 ret = ParamSpecExpr(
3321 read_str(data),
3322 read_str(data),
3323 mypy.types.read_type(data),
3324 mypy.types.read_type(data),
3325 read_int(data),
3326 )
3327 assert read_tag(data) == END_TAG
3328 return ret
3329
3330
3331class TypeVarTupleExpr(TypeVarLikeExpr):

Callers

nothing calls this directly

Calls 3

read_strFunction · 0.90
read_intFunction · 0.90
ParamSpecExprClass · 0.85

Tested by

no test coverage detected