Ian Wesley-Smith
Results
2
comments of
Ian Wesley-Smith
One easy (though probably dangerous) fix is to use a custom attribute to encode these values just as bytes: ``` class PickleAttribute(BinaryAttribute): def serialize(self, value: Any) -> Any: return pickle.dumps(value)...
What about creating a `BinaryAttributeV2`, leaving `BinaryAttribute` alone so existing users don't get broken by an upgrade, but mark it as deprecated and update the documentation to point people at...