1Pickle(3kaya) Kaya module reference Pickle(3kaya)
2
3
4
6 Pickle - String/any value conversion
7
9 The Pickle module allows any value (other than closures) that can be
10 marshalled to be converted to a String. Unlike Builtins.marshal (3kaya)
11 , however, pickled data may be transferred between any two Kaya appliā
12 cations (although for meaningful transfer naturally both applications
13 must be aware of all data types contained in the pickled data).
14
16 Pickle.PickleFormatError (3kaya)
17 Pickle.PickleParseError (3kaya)
18 Pickle.UnknownFunction (3kaya)
20 Pickle.pickle (3kaya)
21 Pickle.unpickle (3kaya)
23 Kaya standard library by Edwin Brady, Chris Morris and others
24 (kaya@kayalang.org). For further information see http://kayalang.org/
26 The Kaya standard library is free software; you can redistribute it
27 and/or modify it under the terms of the GNU Lesser General Public
28 License (version 2.1 or any later version) as published by the Free
29 Software Foundation.
30
31
32
33Kaya December 2010 Pickle(3kaya)