Staging
v0.5.1
https://github.com/python/cpython
Revision b76ab352405df105c2d459fc66ef8dc98e47b37c authored by Miss Islington (bot) on 30 September 2019, 04:02:46 UTC, committed by Lisa Roach on 30 September 2019, 04:02:46 UTC
1 parent c9ed9e6
Raw File
Tip revision: b76ab352405df105c2d459fc66ef8dc98e47b37c authored by Miss Islington (bot) on 30 September 2019, 04:02:46 UTC
bpo-38108: Makes mock objects inherit from Base (GH-16060) (GH-16470)
Tip revision: b76ab35
marshal.h

/* Interface for marshal.c */

#ifndef Py_MARSHAL_H
#define Py_MARSHAL_H
#ifdef __cplusplus
extern "C" {
#endif

#define Py_MARSHAL_VERSION 4

PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
PyAPI_FUNC(PyObject *) PyMarshal_WriteObjectToString(PyObject *, int);

#ifndef Py_LIMITED_API
PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
#endif
PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromString(const char *,
                                                      Py_ssize_t);

#ifdef __cplusplus
}
#endif
#endif /* !Py_MARSHAL_H */
back to top