[wxPython-users] where to find a mailing list about pickle module
in python ?
Andrea Gavana
andrea.gavana at gmail.com
Tue Apr 3 05:33:07 PDT 2007
Hi Robert,
On 4/3/07, Robert VERGNES wrote:
> I am looking for a forum or a mailing list to ask a question about the
> pickle module.
> It crashes on linux - ie teh same programm generates an ASCII file on WinXP
> but when read with the same soft on Linux the pickle module complains..
> I am looking where I could get some support about this issue .
I don't think a specific forum for cPickle exists (but I may be
wrong). However, the best place to ask for help is surely the Python
mailing list.
> File "/usr/lib/python2.4/pickle.py", line 1390, in load
> return Unpickler(file).load()
> File "/usr/lib/python2.4/pickle.py", line 872, in load
> dispatch[key](self)
> File "/usr/lib/python2.4/pickle.py", line 980, in load_string
> raise ValueError, "insecure string pickle"
cPickle (pickle) doesn't like when a string starts with backslashes or
is in some way corrupted (i.e., missing quotes or similar). It thinks
you are trying to hack your machine :-D. However, this depends on
exactly *what* is inside your file and if it could be interpreted as
dangerous by cPickle (whatever it means).
Andrea.
"Imagination Is The Only Weapon In The War Against Reality."
http://xoomer.virgilio.it/infinity77/
More information about the wxpython-users
mailing list