0
votes
4answers
45 views
Python ValueError: insecure string pickle
Python problem: When I am trying to load sth I dumped using cPickle, I get the error message:
ValueError: insecure string pickle
Both the dumping and loading work are done on the …
1
vote
2answers
57 views
Unable to unpickle a file on Mac that was pickled on Windows
Hello,
I've got a simple class that I am pickling(dumping) to a file. On OS X this works fine, and on Windows this works fine.
However, while on windows I can load/unpickle the o …
1
vote
1answer
39 views
How to parse Perforce “pickle” binary output?
Perforce command line has a special switch, -G, that supposedly causes its output to be machine readable, using python's "pickle" serialization format. Is this actually so, in gene …
1
vote
1answer
85 views
file size is dramatically increased after pickle
I'm reading in a file and sending the data (once encrypted) to a dictionary, with a hash of the data before and after encryption. I then pickle the dictionary but find the file siz …
1
vote
1answer
37 views
Setting an object in the Django cache API fails due to pickle error
I'm trying to manually set an object in the Django cache API but it fails (i think due to pickling?)
The object is given to me by a third party, my code is:
def index(request, tem …
2
votes
2answers
91 views
Python multiprocessing and database access with pyodbc “is not safe”?
The Problem:
I am getting the following traceback and don't understand what it means or how to fix it:
Traceback (most recent call last):
File "<string>", line 1, in < …
6
votes
3answers
134 views
copy.deepcopy vs pickle
I have tree structure of widgets e.g. collection contains models and model contains widgets
I wan to copy whole collection, copy.deepcopy is faster in comparison to 'pickle and de- …
2
votes
1answer
81 views
Python 2.6 send connection object over Queue / Pipe / etc.
Given this bug (Python Issue 4892) that gives rise to the following error:
>>> import multiprocessing
>>> multiprocessing.allow_connection_pickling()
>>> …
4
votes
6answers
264 views
Is there an easy way to pickle a python function (or otherwise serialize its code)?
I'm trying to transfer a transfer a function across a network connection (using asyncore). Is there an easy way to serialize a python function (one that, in this case at least, wil …
2
votes
3answers
179 views
Python class for pickle- and copy-persistent object?
I'm trying to write a class for a read-only object which will not be really copied with the copy module, and when it will be pickled to be transferred between processes each proces …
4
votes
1answer
84 views
Unpickling classes from Python 3 in Python 2
If a Python 3 class is pickled using protocol 2, it is supposed to work in Python 2, but unfortunately, this fails because the names of some classes have changed.
Assume we have c …
1
vote
2answers
59 views
Customizing how Python’s `copy` module treats my objects
From the copy documentation:
Classes can use the same interfaces to control copying that they use to control pickling.
[...]
In order for a class to define its own co …
0
votes
1answer
121 views
PicklingError: Can’t pickle <class ‘decimal.Decimal’>: it’s not the same object as decimal.Decimal
This is the error I got today at filmaster.com:
PicklingError: Can't pickle : it's not the same
object as decimal.Decimal
What does that exactly mean? It does not seem to b …
1
vote
2answers
85 views
How to pickle numpy’s Inf objects?
When trying to pickle the object Inf as defined in numpy (I think), the dumping goes Ok but the loading fails:
>>> cPickle.dump(Inf, file("c:/temp/a.pcl",'wb'))
>>& …
2
votes
3answers
168 views
Gracefully-degrading pickling in Python
(You may read this question for some background)
I would like to have a gracefully-degrading way to pickle objects in Python.
When pickling an object, let's call it the main obje …
