From d3728ddc572fff7ffcc95301bf5265717dbaf476 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sun, 1 Oct 2023 00:21:20 +0200 Subject: [PATCH] gh-110014: Fix bootstrap_hash.c: remove debug code (#110161) Oops, I commited debug code by mistake, sorry about that. --- Python/bootstrap_hash.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/Python/bootstrap_hash.c b/Python/bootstrap_hash.c index 86a16916304..92f2301a012 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 // close() #endif