Lines Matching +full:format +full:- +full:extra +full:- +full:args
7 "--\n"
16 " Indicates the data format that dump should use.\n"
19 "ValueError exception is raised - but garbage data will also be written\n"
30 marshal_dump(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in marshal_dump() argument
40 value = args[0]; in marshal_dump()
41 file = args[1]; in marshal_dump()
45 version = _PyLong_AsInt(args[2]); in marshal_dump()
46 if (version == -1 && PyErr_Occurred()) { in marshal_dump()
58 "--\n"
66 "version\'s incompatible marshal format), raise EOFError, ValueError or\n"
77 "--\n"
84 " Indicates the data format that dumps should use.\n"
96 marshal_dumps(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in marshal_dumps() argument
105 value = args[0]; in marshal_dumps()
109 version = _PyLong_AsInt(args[1]); in marshal_dumps()
110 if (version == -1 && PyErr_Occurred()) { in marshal_dumps()
122 "--\n"
124 "Convert the bytes-like object to a value.\n"
126 "If no valid value is found, raise EOFError, ValueError or TypeError. Extra\n"