2007-06-12 20:30:11 -03:00
|
|
|
/* File object interface (what's left of it -- see io.py) */
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
#ifndef Py_FILEOBJECT_H
|
|
|
|
#define Py_FILEOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-06-12 20:30:11 -03:00
|
|
|
#define PY_STDIOTEXTMODE "b"
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2007-10-30 14:27:30 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyFile_FromFd(int, char *, char *, int, char *, char *,
|
2007-12-03 18:54:21 -04:00
|
|
|
char *, int);
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyFile_GetLine(PyObject *, int);
|
|
|
|
PyAPI_FUNC(int) PyFile_WriteObject(PyObject *, PyObject *, int);
|
|
|
|
PyAPI_FUNC(int) PyFile_WriteString(const char *, PyObject *);
|
|
|
|
PyAPI_FUNC(int) PyObject_AsFileDescriptor(PyObject *);
|
2007-06-12 20:30:11 -03:00
|
|
|
PyAPI_FUNC(char *) Py_UniversalNewlineFgets(char *, int, FILE*, PyObject *);
|
1993-07-28 06:05:47 -03:00
|
|
|
|
2001-05-14 09:17:34 -03:00
|
|
|
/* The default encoding used by the platform file system APIs
|
2002-04-21 04:29:14 -03:00
|
|
|
If non-NULL, this is different than the default encoding for strings
|
2001-05-14 09:17:34 -03:00
|
|
|
*/
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_DATA(const char *) Py_FileSystemDefaultEncoding;
|
2007-11-30 06:18:26 -04:00
|
|
|
PyAPI_DATA(const int) Py_HasFileSystemDefaultEncoding;
|
2001-05-14 09:17:34 -03:00
|
|
|
|
2007-10-30 15:34:07 -03:00
|
|
|
/* Internal API
|
|
|
|
|
|
|
|
The std printer acts as a preliminary sys.stderr until the new io
|
|
|
|
infrastructure is in place. */
|
|
|
|
PyAPI_FUNC(PyObject *) PyFile_NewStdPrinter(int);
|
|
|
|
PyAPI_DATA(PyTypeObject) PyStdPrinter_Type;
|
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_FILEOBJECT_H */
|