(obj)
| 309 | |
| 310 | |
| 311 | def msgpack_roundtrip_dataclass(obj): |
| 312 | payload = make_msgpack_compatible(obj) |
| 313 | binary = msgpack.dumps(payload, use_bin_type=True) |
| 314 | restored = msgpack.loads(binary, raw=False, strict_map_key=False) |
| 315 | _restore_dataclass_from_template(restored, obj) |
| 316 | |
| 317 | |
| 318 | def msgpack_serialize(obj): |
nothing calls this directly
no test coverage detected