diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-30 22:21:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 22:21:20 (GMT) |
commit | d3728ddc572fff7ffcc95301bf5265717dbaf476 (patch) | |
tree | ccfa46104ea0c7f8adbc4f41a91b7f0d34956f09 /Python | |
parent | c81521020d643b4a5183098470ef7e6470facefb (diff) | |
download | cpython-d3728ddc572fff7ffcc95301bf5265717dbaf476.zip cpython-d3728ddc572fff7ffcc95301bf5265717dbaf476.tar.gz cpython-d3728ddc572fff7ffcc95301bf5265717dbaf476.tar.bz2 |
gh-110014: Fix bootstrap_hash.c: remove debug code (#110161)
Oops, I commited debug code by mistake, sorry about that.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/bootstrap_hash.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/bootstrap_hash.c b/Python/bootstrap_hash.c index 86a1691..92f2301 100644 --- a/Python/bootstrap_hash.c +++ b/Python/bootstrap_hash.c @@ -4,9 +4,6 @@ #include "pycore_pylifecycle.h" // _PyOS_URandomNonblock() #include "pycore_runtime.h" // _PyRuntime -#undef HAVE_GETRANDOM -#undef HAVE_GETENTROPY - #ifdef HAVE_UNISTD_H # include <unistd.h> // close() #endif |