Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:18:04

0001 #ifndef Py_CPYTHON_SYSMODULE_H
0002 #  error "this header file must not be included directly"
0003 #endif
0004 
0005 PyAPI_FUNC(PyObject *) _PySys_GetAttr(PyThreadState *tstate,
0006                                       PyObject *name);
0007 
0008 PyAPI_FUNC(size_t) _PySys_GetSizeOf(PyObject *);
0009 
0010 typedef int(*Py_AuditHookFunction)(const char *, PyObject *, void *);
0011 
0012 PyAPI_FUNC(int) PySys_Audit(
0013     const char *event,
0014     const char *argFormat,
0015     ...);
0016 PyAPI_FUNC(int) PySys_AddAuditHook(Py_AuditHookFunction, void*);