https://github.com/python/cpython/commit/09871c922393cba4c85bc29d210d76425e076c1d
commit: 09871c922393cba4c85bc29d210d76425e076c1d
branch: main
author: Pablo Galindo Salgado <[email protected]>
committer: pablogsal <[email protected]>
date: 2024-05-06T15:30:30+01:00
summary:

gh-118518: Correct type of perf_profiling in config (#118646)

files:
M Python/initconfig.c

diff --git a/Python/initconfig.c b/Python/initconfig.c
index 1880a28fea81f6..0e53d60e3537af 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),

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to