diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-04 09:41:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-04 09:41:43 (GMT) |
commit | c9ce983ae1a361f431a0303aeb6f4b8e1d674275 (patch) | |
tree | e5e6dae3885a270ffeea975ff03462c186af68c9 /Modules/posixmodule.c | |
parent | 8a73b57b9b5f6e36dd5a4c279f4d606d9e71a31f (diff) | |
download | cpython-c9ce983ae1a361f431a0303aeb6f4b8e1d674275.zip cpython-c9ce983ae1a361f431a0303aeb6f4b8e1d674275.tar.gz cpython-c9ce983ae1a361f431a0303aeb6f4b8e1d674275.tar.bz2 |
gh-106320: Remove private pylifecycle.h functions (#106400)
Remove private pylifecycle.h functions: move them to the internal C
API ( pycore_atexit.h, pycore_pylifecycle.h and pycore_signal.h). No
longer export most of these functions.
Move _testcapi.test_atexit() to _testinternalcapi.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index b9f4247..aef802c 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -19,6 +19,7 @@ #include "pycore_initconfig.h" // _PyStatus_EXCEPTION() #include "pycore_moduleobject.h" // _PyModule_GetState() #include "pycore_object.h" // _PyObject_LookupSpecial() +#include "pycore_pylifecycle.h" // _PyOS_URandom() #include "pycore_pystate.h" // _PyInterpreterState_GET() #include "pycore_signal.h" // Py_NSIG |