diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-19 10:02:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-19 10:02:49 (GMT) |
commit | e9a97c3bf9a516607d11904e55f9004710b1493b (patch) | |
tree | 9d4a2499452919d2504838af5750b39eda9b5344 | |
parent | d065e30b00cc4ba3db33c45563341a33588e7bb9 (diff) | |
download | cpython-e9a97c3bf9a516607d11904e55f9004710b1493b.zip cpython-e9a97c3bf9a516607d11904e55f9004710b1493b.tar.gz cpython-e9a97c3bf9a516607d11904e55f9004710b1493b.tar.bz2 |
[3.11] gh-110383: Fix documentation profile cumtime fix (GH-112221) (#112263)
Co-authored-by: Alex Ptakhin <me@aptakhin.name>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-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. |