(cls, s, f)
| 284 | """Serialize variable length byte strings""" |
| 285 | @classmethod |
| 286 | def stream_serialize(cls, s, f): |
| 287 | l = len(s) |
| 288 | VarIntSerializer.stream_serialize(l, f) |
| 289 | f.write(s) |
| 290 | |
| 291 | @classmethod |
| 292 | def stream_deserialize(cls, f): |
nothing calls this directly
no test coverage detected