diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2024-09-27 23:50:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 23:50:16 (GMT) |
commit | 02b49c51501f5eeef3ab5d74fb9eace1151a1359 (patch) | |
tree | d5e9c36d612b2023eeae9089372937c4334eb063 /Lib/test/test_capi | |
parent | 425587a110eb214a097c634d4b6d944ac478923e (diff) | |
download | cpython-02b49c51501f5eeef3ab5d74fb9eace1151a1359.zip cpython-02b49c51501f5eeef3ab5d74fb9eace1151a1359.tar.gz cpython-02b49c51501f5eeef3ab5d74fb9eace1151a1359.tar.bz2 |
gh-107954: Fix configuration type for the perf profiler (#124636)
Diffstat (limited to 'Lib/test/test_capi')
-rw-r--r-- | Lib/test/test_capi/test_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_capi/test_config.py b/Lib/test/test_capi/test_config.py index 01637e1..71fb9ae 100644 --- a/Lib/test/test_capi/test_config.py +++ b/Lib/test/test_capi/test_config.py @@ -68,7 +68,7 @@ class CAPITests(unittest.TestCase): ("parser_debug", bool, None), ("parse_argv", bool, None), ("pathconfig_warnings", bool, None), - ("perf_profiling", bool, None), + ("perf_profiling", int, None), ("platlibdir", str, "platlibdir"), ("prefix", str | None, "prefix"), ("program_name", str, None), |