Richard Oudkerk <shibt...@gmail.com> added the comment:

Then I doubt this is a bug in Python.

If your class does not override __reduce__, __reduce_ex__ or 
__getstate__/__setstate__, then it is probably one of the attributes of your 
instance which is causing the problem.  You could try to find out which one by 
trying

    cPickle.loads(cPickle.dumps(attribute, -1))

for each attribute of an instance of your class to see if it raises an error.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue15198>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to