twisted.spread.jelly._Unjellier
class documentationtwisted.spread.jelly
View Source
(View In Hierarchy)
Method | __init__ | Undocumented |
Method | unjellyFull | Undocumented |
Method | unjelly | Undocumented |
Method | unjellyInto | Undocumented |
Method | _maybePostUnjelly | If the given object has support for the postUnjelly hook,
set it up to be called at the end of deserialization. |
Method | _genericUnjelly | Unjelly a type for which no specific unjellier is registered, but which is nonetheless allowed. |
Method | _unjelly_None | Undocumented |
Method | _unjelly_unicode | Undocumented |
Method | _unjelly_decimal | Unjelly decimal objects. |
Method | _unjelly_boolean | Undocumented |
Method | _unjelly_datetime | Undocumented |
Method | _unjelly_date | Undocumented |
Method | _unjelly_time | Undocumented |
Method | _unjelly_timedelta | Undocumented |
Method | _unjelly_dereference | Undocumented |
Method | _unjelly_reference | Undocumented |
Method | _unjelly_tuple | Undocumented |
Method | _unjelly_list | Undocumented |
Method | _unjellySetOrFrozenset | Helper method to unjelly set or frozenset. |
Method | _unjelly_set | Unjelly set using the set builtin. |
Method | _unjelly_frozenset | Unjelly frozenset using the frozenset builtin. |
Method | _unjelly_dictionary | Undocumented |
Method | _unjelly_module | Undocumented |
Method | _unjelly_class | Undocumented |
Method | _unjelly_function | Undocumented |
Method | _unjelly_persistent | Undocumented |
Method | _unjelly_instance | (internal) Unjelly an instance. |
Method | _unjelly_unpersistable | Undocumented |
Method | _unjelly_method | (internal) Unjelly a method. |
If the given object has support for the postUnjelly
hook,
set it up to be called at the end of deserialization.
Parameters | unjellied | an object that has already been unjellied. |
Returns | unjellied |
Unjelly a type for which no specific unjellier is registered, but which is nonetheless allowed.
Parameters | cls | the class of the instance we are unjellying. (type: _OldStyleClass
or type ) |
state | The jellied representation of the object's state; its __dict__
unless it has a __setstate__ that takes something else. (type: list ) | |
Returns | the new, unjellied instance. |
Helper method to unjelly set or frozenset.
Parameters | lst | the content of the set. (type: list ) |
containerType | the type of set to use. |
(internal) Unjelly an instance.
Called to handle the deprecated instance token.
Parameters | rest | The s-expression representing the instance. |
Returns | The unjellied instance. |