Lines Matching defs:file
6 "dump($module, value, file, version=version, /)\n"
9 "Write the value on the open file.\n"
13 " file\n"
14 " Must be a writeable binary file.\n"
20 "to the file. The object will not be properly read back by load().");
26 marshal_dump_impl(PyObject *module, PyObject *value, PyObject *file,
34 PyObject *file;
41 file = args[1];
50 return_value = marshal_dump_impl(module, value, file, version);
57 "load($module, file, /)\n"
60 "Read one value from the open file and return it.\n"
62 " file\n"
63 " Must be readable binary file.\n"
79 "Return the bytes object that would be written to a file by dump(value, file).\n"