(cls, data: ReadBuffer)
| 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 | |
| 3331 | class TypeVarTupleExpr(TypeVarLikeExpr): |
nothing calls this directly
no test coverage detected