(binary, dataclass_template)
| 329 | |
| 330 | |
| 331 | def msgpack_deserialize_dataclass(binary, dataclass_template): |
| 332 | restored = msgpack.loads(binary, raw=False, strict_map_key=False) |
| 333 | _restore_dataclass_from_template(restored, dataclass_template) |
| 334 | |
| 335 | |
| 336 | def make_msgpack_compatible(obj): |
nothing calls this directly
no test coverage detected