(cls, b, f)
| 213 | """Serialization of bytes instances""" |
| 214 | @classmethod |
| 215 | def stream_serialize(cls, b, f): |
| 216 | VarIntSerializer.stream_serialize(len(b), f) |
| 217 | f.write(b) |
| 218 | |
| 219 | @classmethod |
| 220 | def stream_deserialize(cls, f): |
nothing calls this directly
no test coverage detected