Staging
v0.5.1
https://github.com/python/cpython
Revision aa5b196c180d4c1dbe5a8593e55066e630d38c09 authored by Benjamin Peterson on 03 January 2020, 03:10:06 UTC, committed by GitHub on 03 January 2020, 03:10:06 UTC
(cherry picked from commit 946b29ea0b3b386ed05e87e60b8617c9dc19cd53)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
1 parent f82e59a
Raw File
Tip revision: aa5b196c180d4c1dbe5a8593e55066e630d38c09 authored by Benjamin Peterson on 03 January 2020, 03:10:06 UTC
[2.7] Bring Python into the next decade. (GH-17805)
Tip revision: aa5b196
marshal.h

/* Interface for marshal.c */

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

#define Py_MARSHAL_VERSION 2

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

PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromString(char *, Py_ssize_t);

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