diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-19 10:03:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-19 10:03:07 (GMT) |
commit | 5134f668b4054f99f317c1300a3c09c6a0e93ca7 (patch) | |
tree | a904367bbf011f86279fbb6018ef3bc83437d0ea /Doc | |
parent | 89c51808398c2f4e199c7c61404ea2113f6890e9 (diff) | |
download | cpython-5134f668b4054f99f317c1300a3c09c6a0e93ca7.zip cpython-5134f668b4054f99f317c1300a3c09c6a0e93ca7.tar.gz cpython-5134f668b4054f99f317c1300a3c09c6a0e93ca7.tar.bz2 |
[3.12] gh-110383: Fix documentation profile cumtime fix (GH-112221) (#112262)
Co-authored-by: Alex Ptakhin <me@aptakhin.name>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/profile.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst index 4c60a1e..cc059b6 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. |