(cls, f, protover=PROTO_VERSION)
| 380 | |
| 381 | @classmethod |
| 382 | def msg_deser(cls, f, protover=PROTO_VERSION): |
| 383 | c = cls() |
| 384 | c.block = CBlock.stream_deserialize(f) |
| 385 | return c |
| 386 | |
| 387 | def msg_ser(self, f): |
| 388 | self.block.stream_serialize(f) |
nothing calls this directly
no test coverage detected