From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 19 Nov 2023 10:02:49 +0000 (+0100) Subject: [3.11] gh-110383: Fix documentation profile cumtime fix (GH-112221) (#112263) X-Git-Tag: v3.11.7~55 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e9a97c3bf9a516607d11904e55f9004710b1493b;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-110383: Fix documentation profile cumtime fix (GH-112221) (#112263) Co-authored-by: Alex Ptakhin 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.