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 Ivan.K, sbt
Date 2014-04-06.22:44:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396824288.06.0.279866886804.issue21162@psf.upfronthosting.co.za>
In-reply-to
Content
Could you try pickling and unpickling the result of func():

import cPickle
data = cPickle.dumps(func([1,2,3]), -1)
print cPickle.loads(data)
History
Date User Action Args
2014-04-06 22:44:48sbtsetrecipients: + sbt, Ivan.K
2014-04-06 22:44:48sbtsetmessageid: <1396824288.06.0.279866886804.issue21162@psf.upfronthosting.co.za>
2014-04-06 22:44:48sbtlinkissue21162 messages
2014-04-06 22:44:47sbtcreate