(cls, data: ReadBuffer)
| 742 | |
| 743 | @classmethod |
| 744 | def read(cls, data: ReadBuffer) -> TypeVarType: |
| 745 | ret = TypeVarType( |
| 746 | read_str(data), |
| 747 | read_str(data), |
| 748 | TypeVarId(read_int(data), namespace=read_str(data)), |
| 749 | read_type_list(data), |
| 750 | read_type(data), |
| 751 | read_type(data), |
| 752 | read_int(data), |
| 753 | ) |
| 754 | assert read_tag(data) == END_TAG |
| 755 | return ret |
| 756 | |
| 757 | |
| 758 | class ParamSpecFlavor: |
nothing calls this directly
no test coverage detected