Kaydet (Commit) b422c249 authored tarafından Guido van Rossum's avatar Guido van Rossum

Added PyFile_decls for PyFile_WriteObject, PyFile_SoftSpace,

PyFile_WriteString.
üst 12669749
...@@ -41,6 +41,9 @@ extern PyObject *PyFile_FromFile ...@@ -41,6 +41,9 @@ extern PyObject *PyFile_FromFile
extern FILE *PyFile_AsFile Py_PROTO((PyObject *)); extern FILE *PyFile_AsFile Py_PROTO((PyObject *));
extern PyObject *PyFile_Name Py_PROTO((PyObject *)); extern PyObject *PyFile_Name Py_PROTO((PyObject *));
extern PyObject *PyFile_GetLine Py_PROTO((PyObject *, int)); 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 #ifdef __cplusplus
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment