Mercurial > repos > rliterman > csp2
comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/include/python3.8/cpython/sysmodule.h @ 69:33d812a61356
planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author | jpayne |
---|---|
date | Tue, 18 Mar 2025 17:55:14 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
67:0e9998148a16 | 69:33d812a61356 |
---|---|
1 #ifndef Py_CPYTHON_SYSMODULE_H | |
2 # error "this header file must not be included directly" | |
3 #endif | |
4 | |
5 #ifdef __cplusplus | |
6 extern "C" { | |
7 #endif | |
8 | |
9 PyAPI_FUNC(PyObject *) _PySys_GetObjectId(_Py_Identifier *key); | |
10 PyAPI_FUNC(int) _PySys_SetObjectId(_Py_Identifier *key, PyObject *); | |
11 | |
12 PyAPI_FUNC(size_t) _PySys_GetSizeOf(PyObject *); | |
13 | |
14 typedef int(*Py_AuditHookFunction)(const char *, PyObject *, void *); | |
15 | |
16 PyAPI_FUNC(int) PySys_Audit(const char*, const char *, ...); | |
17 PyAPI_FUNC(int) PySys_AddAuditHook(Py_AuditHookFunction, void*); | |
18 | |
19 #ifdef __cplusplus | |
20 } | |
21 #endif |