I have a SortedList<DateTimeOffset,double> that I have serialized, I can deserialize it in C# without problems but when attempting to deserialize using msgpack/msgpack-python it fails stating ValueError("code must be 0~127"). How can I deserialize this properly in Python?
I have a
SortedList<DateTimeOffset,double>that I have serialized, I can deserialize it in C# without problems but when attempting to deserialize using msgpack/msgpack-python it fails statingValueError("code must be 0~127"). How can I deserialize this properly in Python?