Home | Trees | Indices | Help |
---|
|
|
|||
|
serialprop When used like a property in a Serial class, it will act as a flag to the serializer that only properties that are of type serialprop or lazyprop are to be
serialized.
|
||
|
lazyprop When used like a property in a Serial class, it will act as a flag to the serializer that only properties that are of type serialprop or lazyprop are to be
serialized.
|
||
| SpoonData | ||
| SerialMeta | ||
| Serial | ||
|
Memoizer Used as a substitute for the file object when serializing Serial objects, so reference cycles are caught and handled. |
||
|
StringIOWrap Stupid wrapper around StringIO because it isn't a new style class. |
||
| LazyDict |
|
|||
| encode_stringio(fd, item) | ||
| decode_stringio(fd, tag) | ||
| encode_lazydict(fd, item) | ||
|
decode_lazydict(fd,
tag) Decoding a lazy dict will just result in returning the entire object as a string. |
||
| encode_dict(fd, item) | ||
| decode_dict(fd, tag) | ||
| encode_pyobjz(fd, obj) | ||
| decode_pyobjz(fd, tag) | ||
| encode_pyobj(fd, obj, omittag=False) | ||
| decode_pyobj(fd, tag) | ||
| decode_pyobj_ref(fd, tag) |
|
|||
|
DICT_TAG = ber.Tag(ber.APPLICATION, 1, container= True)
|
||
|
PYOBJ_TAG = ber.Tag(ber.APPLICATION, 2, container= True)
|
||
|
PYOBJ_REF_TAG = ber.Tag(ber.APPLICATION, 3)
|
||
|
LAZY_DICT_TAG = ber.Tag(ber.APPLICATION, 4, container= True)
|
||
|
STRING_BUFF_TAG = ber.Tag(ber.APPLICATION, 5, container= True)
|
||
|
PYOBJZ_TAG = ber.Tag(ber.APPLICATION, 6)
|
||
|
SPOONLINKMSG_TAG = ber.Tag(ber.APPLICATION, 7, container= True)
|
||
|
SPOONNETMSG_TAG = ber.Tag(ber.APPLICATION, 8, container= True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DICT_TAGNone
|
PYOBJ_TAGNone
|
PYOBJ_REF_TAGNone
|
LAZY_DICT_TAGNone
|
STRING_BUFF_TAGNone
|
PYOBJZ_TAGNone
|
SPOONLINKMSG_TAGNone
|
SPOONNETMSG_TAGNone
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0alpha3 on Mon Nov 27 16:00:25 2006 | http://epydoc.sourceforge.net |