stalecucumber
stalecucumber copied to clipboard
no support for v3
When I try to open a pkl file, it returns an error of: Pickle Machine failed on opcode:0x80. Stack size:0. Memo size:0. Cause:Unsupported version #3 detected
.
So is there any way to open it?
Presumably you are using Python3, you would need to use a function call like pickle.dumps(my_object, 2)
and the pickle
module will write version 2 code which this library can read.
@hydrogen18 Will version 3 be supported in the future?