Python marshal Functions
EditRocket provides the following information on marshal functions in the Python source code builder.
dump(value, file[, version]) - Write the value on the open file.
dumps(value[, version]) - Return the string that would be written to a file by dump(value, file).
load(file) - Read one value from the open file and return it.
loads(string) - Convert the string to a value.