File indexing completed on 2025-11-19 09:50:41
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
0007
0008
0009 PyAPI_FUNC(PyObject *) PyFile_NewStdPrinter(int);
0010 PyAPI_DATA(PyTypeObject) PyStdPrinter_Type;
0011
0012 typedef PyObject * (*Py_OpenCodeHookFunction)(PyObject *, void *);
0013
0014 PyAPI_FUNC(PyObject *) PyFile_OpenCode(const char *utf8path);
0015 PyAPI_FUNC(PyObject *) PyFile_OpenCodeObject(PyObject *path);
0016 PyAPI_FUNC(int) PyFile_SetOpenCodeHook(Py_OpenCodeHookFunction hook, void *userData);