[Zope] array module and pickleing ques

Dieter Maurer dieter@handshake.de
Wed, 10 Jul 2002 20:03:07 +0200


Aseem Mohanty writes:
 > why does a call to array.array() cause an unpickleable error??
Probably, because it is not a standard Python class but implemented
in "C" and the author did not provide "setstate/getstate" methods.

Pickling means serializing. Apparently, the pickle modules does
not know how to serialize "array"s.


Dieter