From 09871c922393cba4c85bc29d210d76425e076c1d Mon Sep 17 00:00:00 2001 From: Pablo Galindo Salgado Date: Mon, 6 May 2024 15:30:30 +0100 Subject: gh-118518: Correct type of perf_profiling in config (#118646) --- Python/initconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/initconfig.c b/Python/initconfig.c index 1880a28..0e53d60 100644 --- a/Python/initconfig.c +++ b/Python/initconfig.c @@ -60,7 +60,7 @@ static const PyConfigSpec PYCONFIG_SPEC[] = { SPEC(hash_seed, ULONG), SPEC(faulthandler, BOOL), SPEC(tracemalloc, UINT), - SPEC(perf_profiling, BOOL), + SPEC(perf_profiling, UINT), SPEC(import_time, BOOL), SPEC(code_debug_ranges, BOOL), SPEC(show_ref_count, BOOL), -- cgit v0.12