Staging
v0.5.1
https://github.com/python/cpython
Revision 91ade654c010566b95e4b7cb21b3084e22007ef9 authored by Neal Norwitz on 01 July 2003, 21:37:38 UTC, committed by Neal Norwitz on 01 July 2003, 21:37:38 UTC
Document the DISTUTILS_DEBUG variable.
Closes sf #761401.
1 parent a3d818f
Raw File
Tip revision: 91ade654c010566b95e4b7cb21b3084e22007ef9 authored by Neal Norwitz on 01 July 2003, 21:37:38 UTC
Backport theller's checkin:
Tip revision: 91ade65
marshal.h

/* Interface for marshal.c */

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

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

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

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