Lines Matching defs:value
6 "dump($module, value, file, version=version, /)\n"
9 "Write the value on the open file.\n"
11 " value\n"
18 "If the value has (or contains an object that has) an unsupported type, a\n"
26 marshal_dump_impl(PyObject *module, PyObject *value, PyObject *file,
33 PyObject *value;
40 value = args[0];
50 return_value = marshal_dump_impl(module, value, file, version);
60 "Read one value from the open file and return it.\n"
65 "If no valid value is read (e.g. because the data has a different Python\n"
76 "dumps($module, value, version=version, /)\n"
79 "Return the bytes object that would be written to a file by dump(value, file).\n"
81 " value\n"
86 "Raise a ValueError exception if value has (or contains an object that has) an\n"
93 marshal_dumps_impl(PyObject *module, PyObject *value, int version);
99 PyObject *value;
105 value = args[0];
114 return_value = marshal_dumps_impl(module, value, version);
124 "Convert the bytes-like object to a value.\n"
126 "If no valid value is found, raise EOFError, ValueError or TypeError. Extra\n"