diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-04 11:41:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-04 09:41:43 +0000 |
commit | c9ce983ae1a361f431a0303aeb6f4b8e1d674275 (patch) | |
tree | e5e6dae3885a270ffeea975ff03462c186af68c9 /Python/bootstrap_hash.c | |
parent | 8a73b57b9b5f6e36dd5a4c279f4d606d9e71a31f (diff) | |
download | cpython-c9ce983ae1a361f431a0303aeb6f4b8e1d674275.tar.gz cpython-c9ce983ae1a361f431a0303aeb6f4b8e1d674275.zip |
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 'Python/bootstrap_hash.c')
-rw-r--r-- | Python/bootstrap_hash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/bootstrap_hash.c b/Python/bootstrap_hash.c index 587063ef1ab..ef693e5df1f 100644 --- a/Python/bootstrap_hash.c +++ b/Python/bootstrap_hash.c @@ -1,6 +1,7 @@ #include "Python.h" -#include "pycore_initconfig.h" #include "pycore_fileutils.h" // _Py_fstat_noraise() +#include "pycore_initconfig.h" +#include "pycore_pylifecycle.h" // _PyOS_URandomNonblock() #include "pycore_runtime.h" // _PyRuntime #ifdef MS_WINDOWS |