2007-06-13 07:30:11 +08:00
|
|
|
/* File object interface (what's left of it -- see io.py) */
|
1990-10-14 20:07:46 +08:00
|
|
|
|
2000-07-09 08:20:36 +08:00
|
|
|
#ifndef Py_FILEOBJECT_H
|
|
|
|
#define Py_FILEOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-06-13 07:30:11 +08:00
|
|
|
#define PY_STDIOTEXTMODE "b"
|
1990-10-14 20:07:46 +08:00
|
|
|
|
2013-10-20 02:03:34 +08:00
|
|
|
PyAPI_FUNC(PyObject *) PyFile_FromFd(int, const char *, const char *, int,
|
|
|
|
const char *, const char *,
|
|
|
|
const char *, int);
|
2002-08-12 15:21:58 +08: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 *);
|
1993-07-28 17:05:47 +08:00
|
|
|
|
2001-05-14 20:17:34 +08:00
|
|
|
/* The default encoding used by the platform file system APIs
|
2002-04-21 15:29:14 +08:00
|
|
|
If non-NULL, this is different than the default encoding for strings
|
2001-05-14 20:17:34 +08:00
|
|
|
*/
|
2022-06-17 22:12:00 +08:00
|
|
|
Py_DEPRECATED(3.12) PyAPI_DATA(const char *) Py_FileSystemDefaultEncoding;
|
2020-10-10 22:09:45 +08:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000
|
2022-06-17 22:12:00 +08:00
|
|
|
Py_DEPRECATED(3.12) PyAPI_DATA(const char *) Py_FileSystemDefaultEncodeErrors;
|
2020-10-10 22:09:45 +08:00
|
|
|
#endif
|
2023-06-30 17:57:06 +08:00
|
|
|
Py_DEPRECATED(3.12) PyAPI_DATA(int) Py_HasFileSystemDefaultEncoding;
|
2001-05-14 20:17:34 +08:00
|
|
|
|
2020-10-10 22:09:45 +08:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03070000
|
2022-06-17 22:12:00 +08:00
|
|
|
Py_DEPRECATED(3.12) PyAPI_DATA(int) Py_UTF8Mode;
|
2020-10-10 22:09:45 +08:00
|
|
|
#endif
|
|
|
|
|
2019-05-23 23:45:22 +08:00
|
|
|
#ifndef Py_LIMITED_API
|
|
|
|
# define Py_CPYTHON_FILEOBJECT_H
|
2021-10-15 07:50:04 +08:00
|
|
|
# include "cpython/fileobject.h"
|
2019-05-23 23:45:22 +08:00
|
|
|
# undef Py_CPYTHON_FILEOBJECT_H
|
|
|
|
#endif
|
|
|
|
|
1993-07-28 17:05:47 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_FILEOBJECT_H */
|