Pickle module
The Pickle module allows any value (other than closures) that can be marshalled to be converted to a String. Unlike marshal, however, pickled data may be transferred between any two Kaya applications (although for meaningful transfer naturally both applications must be aware of all data types contained in the pickled data).
Exceptions
- PickleFormatError - Format incompatibility
- PickleParseError - Parse error
- UnknownFunction - Unknown function name
Functions
- String pickle(a val) - Convert a value to a string
- val unpickle(String dat) - Convert a pickled string to a value