From dc06b386964556fab9d188a2892f4dcaf6b6b6da Mon Sep 17 00:00:00 2001 From: Slavaqq Date: Sat, 19 Jul 2025 16:46:36 +0200 Subject: [PATCH] Update the sampling rate in the documentation --- Doc/whatsnew/3.15.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.15.rst b/Doc/whatsnew/3.15.rst index fe3d45b83a512e..ea369a36983497 100644 --- a/Doc/whatsnew/3.15.rst +++ b/Doc/whatsnew/3.15.rst @@ -82,7 +82,7 @@ running Python processes without requiring code modification or process restart. Unlike deterministic profilers (:mod:`cProfile` and :mod:`profile`) that instrument every function call, the sampling profiler periodically captures stack traces from running processes. This approach provides virtually zero overhead while achieving -sampling rates of **up to 200,000 Hz**, making it the fastest sampling profiler +sampling rates of **up to 1,000,000 Hz**, making it the fastest sampling profiler available for Python (at the time of its contribution) and ideal for debugging performance issues in production environments.