From: Dov Murik Date: Tue, 10 Feb 2026 21:55:40 +0000 (-0500) Subject: docs: profiling.sampling: Fix sampling-rate default value description typo (#144686) X-Git-Tag: v3.15.0a6~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87c9789b9a067caf84a0e70093c798525732f8a1;p=thirdparty%2FPython%2Fcpython.git docs: profiling.sampling: Fix sampling-rate default value description typo (#144686) --- diff --git a/Doc/library/profiling.sampling.rst b/Doc/library/profiling.sampling.rst index ac1098698c8c..87e431969393 100644 --- a/Doc/library/profiling.sampling.rst +++ b/Doc/library/profiling.sampling.rst @@ -354,7 +354,7 @@ Together, these determine how many samples will be collected during a profiling session. The :option:`--sampling-rate` option (:option:`-r`) sets how frequently samples -are collected. The default is 1 kHz (10,000 samples per second):: +are collected. The default is 1 kHz (1,000 samples per second):: python -m profiling.sampling run -r 20khz script.py