From: Pablo Galindo Salgado Date: Mon, 6 May 2024 14:30:30 +0000 (+0100) Subject: gh-118518: Correct type of perf_profiling in config (#118646) X-Git-Tag: v3.13.0b1~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09871c922393cba4c85bc29d210d76425e076c1d;p=thirdparty%2FPython%2Fcpython.git gh-118518: Correct type of perf_profiling in config (#118646) --- diff --git a/Python/initconfig.c b/Python/initconfig.c index 1880a28fea81..0e53d60e3537 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),