File indexing completed on 2025-01-18 10:06:40
0001 #ifndef Py_CPYTHON_FILEOBJECT_H
0002 # error "this header file must not be included directly"
0003 #endif
0004
0005 PyAPI_FUNC(char *) Py_UniversalNewlineFgets(char *, int, FILE*, PyObject *);
0006 PyAPI_FUNC(char *) _Py_UniversalNewlineFgetsWithSize(char *, int, FILE*, PyObject *, size_t*);
0007
0008
0009
0010 PyAPI_FUNC(PyObject *) PyFile_NewStdPrinter(int);
0011 PyAPI_DATA(PyTypeObject) PyStdPrinter_Type;
0012
0013 typedef PyObject * (*Py_OpenCodeHookFunction)(PyObject *, void *);
0014
0015 PyAPI_FUNC(PyObject *) PyFile_OpenCode(const char *utf8path);
0016 PyAPI_FUNC(PyObject *) PyFile_OpenCodeObject(PyObject *path);
0017 PyAPI_FUNC(int) PyFile_SetOpenCodeHook(Py_OpenCodeHookFunction hook, void *userData);
0018
0019 PyAPI_FUNC(int) _PyLong_FileDescriptor_Converter(PyObject *, void *);