From: Guido van Rossum Date: Wed, 22 May 1996 17:22:22 +0000 (+0000) Subject: Added PyFile_decls for PyFile_WriteObject, PyFile_SoftSpace, X-Git-Tag: v1.4b1~164 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b422c24934aa73e41060b26ddb12e9954c9fffe7;p=python Added PyFile_decls for PyFile_WriteObject, PyFile_SoftSpace, PyFile_WriteString. --- diff --git a/Include/fileobject.h b/Include/fileobject.h index 93466247b4..6129cdd66c 100644 --- a/Include/fileobject.h +++ b/Include/fileobject.h @@ -41,6 +41,9 @@ extern PyObject *PyFile_FromFile extern FILE *PyFile_AsFile Py_PROTO((PyObject *)); extern PyObject *PyFile_Name Py_PROTO((PyObject *)); extern PyObject *PyFile_GetLine Py_PROTO((PyObject *, int)); +extern int PyFile_WriteObject Py_PROTO((PyObject *, PyObject *, int)); +extern int PyFile_SoftSpace Py_PROTO((PyObject *, int)); +extern void PyFile_WriteString Py_PROTO((char *, PyObject *)); #ifdef __cplusplus }