diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2024-05-06 14:30:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 14:30:30 (GMT) |
commit | 09871c922393cba4c85bc29d210d76425e076c1d (patch) | |
tree | 399f02a03289ec30e0782a94c5ff6b7349bd3598 /Python/initconfig.c | |
parent | c3f4a6b52418d9b9f091f864cb6340d0d5fc6966 (diff) | |
download | cpython-09871c922393cba4c85bc29d210d76425e076c1d.zip cpython-09871c922393cba4c85bc29d210d76425e076c1d.tar.gz cpython-09871c922393cba4c85bc29d210d76425e076c1d.tar.bz2 |
gh-118518: Correct type of perf_profiling in config (#118646)
Diffstat (limited to 'Python/initconfig.c')
-rw-r--r-- | Python/initconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
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), |