| Function | failureAsJSON |
Convert a failure to a JSON-serializable data structure. |
| Function | failureFromJSON |
Load a Failure from a dictionary deserialized from JSON. |
| Function | objectLoadHook |
Dictionary-to-object-translation hook for certain value types used within the logging system. |
| Function | objectSaveHook |
Object-to-serializable hook for certain value types used within the logging system. |
| Variable | classInfo |
Undocumented |
| Variable | JSONDict |
Undocumented |
| Variable | log |
Undocumented |
| Variable | uuidToLoader |
Undocumented |
| Parameters | |
failure:Failure | A failure to serialize. |
| Returns | |
JSONDict | a mapping of strings to ... stuff, mostly reminiscent of Failure.__getstate__ |
Failure from a dictionary deserialized from JSON.| Parameters | |
failureDict:JSONDict | a JSON-deserialized object like one previously returned by failureAsJSON. |
| Returns | |
Failure | Failure |
| Parameters | |
pythonObject:object | Any object. |
| Returns | |
JSONDict | If the object is one of the special types the logging system supports, a specially-formatted dictionary; otherwise, a marker dictionary indicating that it could not be serialized. |
| See Also | |
the default parameter to json.dump | |