This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sbt
Recipients Ian.Bell, sbt
Date 2012-07-01.08:16:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341130589.8.0.829611358454.issue15198@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2012-07-01 08:16:29sbtsetrecipients: + sbt, Ian.Bell
2012-07-01 08:16:29sbtsetmessageid: <1341130589.8.0.829611358454.issue15198@psf.upfronthosting.co.za>
2012-07-01 08:16:29sbtlinkissue15198 messages
2012-07-01 08:16:29sbtcreate