Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 1 | #ifndef Py_CPYTHON_FILEOBJECT_H |
| 2 | # error "this header file must not be included directly" |
| 3 | #endif |
| 4 | |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 5 | PyAPI_FUNC(char *) Py_UniversalNewlineFgets(char *, int, FILE*, PyObject *); |
| 6 | |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 7 | /* The std printer acts as a preliminary sys.stderr until the new io |
| 8 | infrastructure is in place. */ |
| 9 | PyAPI_FUNC(PyObject *) PyFile_NewStdPrinter(int); |
| 10 | PyAPI_DATA(PyTypeObject) PyStdPrinter_Type; |
| 11 | |
| 12 | typedef PyObject * (*Py_OpenCodeHookFunction)(PyObject *, void *); |
| 13 | |
| 14 | PyAPI_FUNC(PyObject *) PyFile_OpenCode(const char *utf8path); |
| 15 | PyAPI_FUNC(PyObject *) PyFile_OpenCodeObject(PyObject *path); |
| 16 | PyAPI_FUNC(int) PyFile_SetOpenCodeHook(Py_OpenCodeHookFunction hook, void *userData); |
Serhiy Storchaka | 9975cc5 | 2020-10-09 23:00:45 +0300 | [diff] [blame] | 17 | |
| 18 | PyAPI_FUNC(int) _PyLong_FileDescriptor_Converter(PyObject *, void *); |