MORSECorp / snappiershot

Apache License 2.0
30 stars 2 forks source link

Add support for __slots__-optimized classes #79

Closed bbonenfant closed 2 years ago

bbonenfant commented 3 years ago

Describe the Changes Because slots-optimized objects do not have an underlying dictionary, they were not supported by the default_encode_value serializing utility method. This PR adds support for these objects.

closes #57