(cls, data: ReadBuffer)
| 2738 | |
| 2739 | @classmethod |
| 2740 | def read(cls, data: ReadBuffer) -> Overloaded: |
| 2741 | items = [] |
| 2742 | assert read_tag(data) == LIST_GEN |
| 2743 | for _ in range(read_int_bare(data)): |
| 2744 | assert read_tag(data) == CALLABLE_TYPE |
| 2745 | items.append(CallableType.read(data)) |
| 2746 | assert read_tag(data) == END_TAG |
| 2747 | return Overloaded(items) |
| 2748 | |
| 2749 | |
| 2750 | class TupleType(ProperType): |
nothing calls this directly
no test coverage detected