Looks like you're trying to pickle a cStringIO object. That won't work. Options are: find the code using cStringIO and convert to using StringIO (I'm guessing this will work fine), or consider implementing __getstate__ [1] instead.
David [1] http://www.python.org/doc/2.5.2/lib/pickle-inst.html 2009/3/24 Lee Olayvar <[email protected]>: > Can memcache store semi-complex object instances? Or is it basically limited > to only simple data structures? > > Because at the moment, i have been unable to store a complex series of class > instances into memcache. Resulting in an error involving "Can't Pickle > cStringIO.StringI". > > For the full error (mostly): http://dpaste.com/18449/ > > Any comments would be appreciated, thanks, > -- > Lee Olayvar > > > > -- It is better to be wrong than to be vague. — Freeman Dyson --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
