/opt/alt/python39/include/python3.9/cpython
NameSizeModeActions
abstract.h142000644editdlrm
bytearrayobject.h7690644editdlrm
bytesobject.h43480644editdlrm
ceval.h15370644editdlrm
code.h69890644editdlrm
dictobject.h37970644editdlrm
fileobject.h7210644editdlrm
fileutils.h40040644editdlrm
frameobject.h30590644editdlrm
import.h14730644editdlrm
initconfig.h169790644editdlrm
interpreteridobject.h4560644editdlrm
listobject.h13640644editdlrm
methodobject.h13990644editdlrm
object.h193580644editdlrm
objimpl.h44560644editdlrm
pyerrors.h51010644editdlrm
pylifecycle.h20960644editdlrm
pymem.h35110644editdlrm
pystate.h101340644editdlrm
sysmodule.h5750644editdlrm
traceback.h4730644editdlrm
tupleobject.h10360644editdlrm
unicodeobject.h469830644editdlrm
Edit: /opt/alt/python39/include/python3.9/cpython/fileobject.h (721B)
#ifndef Py_CPYTHON_FILEOBJECT_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif PyAPI_FUNC(char *) Py_UniversalNewlineFgets(char *, int, FILE*, PyObject *); /* 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; typedef PyObject * (*Py_OpenCodeHookFunction)(PyObject *, void *); PyAPI_FUNC(PyObject *) PyFile_OpenCode(const char *utf8path); PyAPI_FUNC(PyObject *) PyFile_OpenCodeObject(PyObject *path); PyAPI_FUNC(int) PyFile_SetOpenCodeHook(Py_OpenCodeHookFunction hook, void *userData); #ifdef __cplusplus } #endif