From: Alex Ptakhin Date: Sun, 19 Nov 2023 09:56:54 +0000 (+0100) Subject: gh-110383: Fix documentation profile cumtime fix (#112221) X-Git-Tag: v3.13.0a2~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6bf8f20344333af70acb566998d3e9f44c889555;p=thirdparty%2FPython%2Fcpython.git gh-110383: Fix documentation profile cumtime fix (#112221) Co-authored-by: Hugo van Kemenade --- diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst index 4c60a1e0d781..cc059b66fcb8 100644 --- a/Doc/library/profile.rst +++ b/Doc/library/profile.rst @@ -82,8 +82,8 @@ the following:: The first line indicates that 214 calls were monitored. Of those calls, 207 were :dfn:`primitive`, meaning that the call was not induced via recursion. The -next line: ``Ordered by: cumulative time``, indicates that the text string in the -far right column was used to sort the output. The column headings include: +next line: ``Ordered by: cumulative time`` indicates the output is sorted +by the ``cumtime`` values. The column headings include: ncalls for the number of calls.