(cls, b, protover=PROTO_VERSION)
| 69 | |
| 70 | @classmethod |
| 71 | def from_bytes(cls, b, protover=PROTO_VERSION): |
| 72 | f = BytesIO(b) |
| 73 | return MsgSerializable.stream_deserialize(f, protover=protover) |
| 74 | |
| 75 | @classmethod |
| 76 | def stream_deserialize(cls, f, protover=PROTO_VERSION): |
nothing calls this directly
no test coverage detected