-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add pickle support #21
Conversation
@briangrahamww quick comment on keeping track of supported serializers - let me know if that makes sense. Otherwise I think it looks good and I'll approve! |
Now they are kept track of and it streamlined the code! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
I had some objects that could only be serialized/deserialized properly using pickle and not dill, so I created a new reader and writer,
deserializer.py
andserializer.py
, respectively.These new classes copy the dill reader and writer, but have an additional config variable to specify whether to use
dill
orpickle
serialization packages. I left the dill reader and writer for now, but we can deprecate and remove in a future release that has other breaking changes.