Home | Trees | Index | Help |
---|
Class Serial |
|
object
--+
|
Serial
Method Summary | |
---|---|
__new__(cls,
*args,
**kwargs)
(Static method) | |
Decode all of the attributes marked as lazy that have not yet been decoded. | |
Called after an object is received over the network, instead of the normal __init__ method. | |
Called right before this object's attributes are encoded into a stream for network travel. | |
Inherited from object | |
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Class Variable Summary | |
---|---|
type |
__metaclass__ = None.SerialMeta |
Instance Method Details |
---|
decode_lazy(self)Decode all of the attributes marked as lazy that have not yet been decoded.
|
post_deserialize(self)Called after an object is received over the network, instead of the normal__init__ method.
|
pre_serialize(self)Called right before this object's attributes are encoded into a stream for network travel. |
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Sun Nov 26 15:33:58 2006 | http://epydoc.sf.net |