summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-22 17:22:22 (GMT)
committerGuido van Rossum <guido@python.org>1996-05-22 17:22:22 (GMT)
commitb422c24934aa73e41060b26ddb12e9954c9fffe7 (patch)
tree310592b815264b52164c2c9d0af16fb85aa52352 /Include
parent12669749f62f88128452e420abef1b47cedaa0b1 (diff)
downloadcpython-b422c24934aa73e41060b26ddb12e9954c9fffe7.zip
cpython-b422c24934aa73e41060b26ddb12e9954c9fffe7.tar.gz
cpython-b422c24934aa73e41060b26ddb12e9954c9fffe7.tar.bz2
Added PyFile_decls for PyFile_WriteObject, PyFile_SoftSpace,
PyFile_WriteString.
Diffstat (limited to 'Include')
-rw-r--r--Include/fileobject.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/fileobject.h b/Include/fileobject.h
index 9346624..6129cdd 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
}