Generate an XML-RPC params chunk from a Python data structure.
Create a Marshaller instance for each set of parameters, and use the "dumps" method to convert your data (represented as a tuple) to an XML-RPC params chunk. To write a fault response, pass a Fault instance instead. You may prefer to use the "dumps" module function for this purpose.
There are no base classes.
There are no implemented interfaces.
dispatch
(type:
dict
)
{<type 'NoneType'>: <function dump_nil at 0x41300fb4>, <type 'int'>: <function dump_int at 0x4130d02c>, <type 'instance'>: <function dump_instance at 0x4130d1ec>, <type 'tuple'>: <function dump_array at 0x4130d17c>, <type 'bool'>: <function dump_bool at 0x4130d064>, <type 'list'>: <function dump_array at 0x4130d17c>, <type 'float'>: <function dump_double at 0x4130d0d4>, <type 'str'>: <function dump_string at 0x4130d10c>, <type 'unicode'>: <function dump_unicode at 0x4130d144>, <type 'long'>: <function dump_long at 0x4130d09c>, <type 'dict'>: <function dump_struct at 0x4130d1b4>}
dump_array(value, write)
dump_bool(value, write)
dump_double(value, write)
dump_instance(value, write)
dump_int(value, write)
dump_long(value, write)
dump_nil(value, write)
dump_string(value, write, escape=<function escape at 0x41300994>)
dump_struct(value, write, escape=<function escape at 0x41300994>)
dump_unicode(value, write, escape=<function escape at 0x41300994>)
dumps(values)
There are no known subclasses.