Where Online Learning is simpler!
The C and C++ Include Header Files
/usr/include/python3.12/internal/pycore_sysmodule.h
$ cat -n /usr/include/python3.12/internal/pycore_sysmodule.h 1 #ifndef Py_INTERNAL_SYSMODULE_H 2 #define Py_INTERNAL_SYSMODULE_H 3 #ifdef __cplusplus 4 extern "C" { 5 #endif 6 7 #ifndef Py_BUILD_CORE 8 # error "this header requires Py_BUILD_CORE define" 9 #endif 10 11 PyAPI_FUNC(int) _PySys_Audit( 12 PyThreadState *tstate, 13 const char *event, 14 const char *argFormat, 15 ...); 16 17 /* We want minimal exposure of this function, so use extern rather than 18 PyAPI_FUNC() to not export the symbol. */ 19 extern void _PySys_ClearAuditHooks(PyThreadState *tstate); 20 21 PyAPI_FUNC(int) _PySys_SetAttr(PyObject *, PyObject *); 22 23 extern int _PySys_ClearAttrString(PyInterpreterState *interp, 24 const char *name, int verbose); 25 26 #ifdef __cplusplus 27 } 28 #endif 29 #endif /* !Py_INTERNAL_SYSMODULE_H */
Contact us
|
About us
|
Term of use
|
Copyright © 2000-2025 MyWebUniversity.com ™