PWhen I am trying to load something I dumped using cPickle, I get the error message:
ValueError: insecure string pickle
Both the dumping and loading work are done on the same computer, thus same OS: Ubuntu 8.04.
How could I solve this problem?
|
"are much more likely than a never-observed bug in Python itself in a functionality that's used billions of times a day all over the world": it always amazes me how cross people get in these forums. One easy way to get this problem is by forgetting to close the stream that you're using for dumping the data structure. I just did
Which is why I came here in the first place, because I couldn't see what I'd done wrong.
Easy to forget. Didn't need people being told that they are idiots. |
||||
|
|
|
What are you doing with data between |
|||
|
|
|
Check this thread. Peter Otten says:
and shows a simple way to reproduce such "corruption". Steve Holden, in the follow-up post, suggests another way to cause the problem would be to mismatch 'rb' and 'wb' (but in Python 2 and on Linux that particular mistake should pass unnoticed). |
|||||
|
\ncharacters) – SummerBreeze Mar 12 at 10:53