You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The (de)serialization currently uses Pickle. This breaks when upgrading the classes of the stored objects, since the deserializer can't find the newly added fields in the file.
We need a backward compatible deserialization process. This probably means writing a (de)serializer explicitly instead of relying on pickle. (This has an added security advantage; unpickle-ing isn't very safe to do if the source is not trusted)
The (de)serialization currently uses Pickle. This breaks when upgrading the classes of the stored objects, since the deserializer can't find the newly added fields in the file.
We need a backward compatible deserialization process. This probably means writing a (de)serializer explicitly instead of relying on pickle. (This has an added security advantage; unpickle-ing isn't very safe to do if the source is not trusted)
See also: #69
The text was updated successfully, but these errors were encountered: