Comment by westurner
1 year ago
A data-only pickle serialization protocol implementation would need to skip calls to self.save_global() in pickle._Pickler.save() if condition(pickle_protocol) here https://github.com/python/cpython/blob/main/Lib/pickle.py#L5... and #L585 , and also in the save_type() dispatch table at #L1123 .
Here's that: https://discuss.python.org/t/create-a-new-pickle-protocol-ve...