Lines Matching defs:value
27 * On Windows debug builds, reduce this value.
315 w = (int)(uintptr_t)entry->value;
491 PyObject *key, *value;
495 while (PyDict_Next(v, &pos, &key, &value)) {
497 w_object(value, p);
502 PyObject *value;
522 while (_PySet_NextEntry(v, &pos, &value, &hash)) {
523 PyObject *dump = PyMarshal_WriteObjectToString(value, p->version);
529 PyObject *pair = PyTuple_Pack(2, dump, value);
546 value = PyTuple_GET_ITEM(pair, 1);
547 w_object(value, p);
985 /* NULL is a valid return value, it does not necessarily means that
1693 value: object
1701 Write the value on the open file.
1703 If the value has (or contains an object that has) an unsupported type, a
1709 marshal_dump_impl(PyObject *module, PyObject *value, PyObject *file,
1717 s = PyMarshal_WriteObjectToString(value, version);
1732 Read one value from the open file and return it.
1734 If no valid value is read (e.g. because the data has a different Python
1786 value: object
1792 Return the bytes object that would be written to a file by dump(value, file).
1794 Raise a ValueError exception if value has (or contains an object that has) an
1799 marshal_dumps_impl(PyObject *module, PyObject *value, int version)
1802 return PyMarshal_WriteObjectToString(value, version);
1811 Convert the bytes-like object to a value.
1813 If no valid value is found, raise EOFError, ValueError or TypeError. Extra
1852 whose value is independent from a particular invocation of Python can be\n\
1870 dump() -- write value to a file\n\
1871 load() -- read value from a file\n\
1872 dumps() -- marshal value as a bytes object\n\
1873 loads() -- read value from a bytes-like object");