This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author emery.berger
Recipients docs@python, emery.berger
Date 2022-01-01.00:00:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1640995250.13.0.0626118666649.issue46216@roundup.psfhosted.org>
In-reply-to
Content
This is a minor documentation nit.

Under the entry for `os.times()`, there is a description of the various fields it returns (e.g., `user`, `system`).

```os.times()
Returns the current global process times. The return value is an object with five attributes:

user - user time

system - system time
```

For the latter, the word `system` is hyperlinked to the `os.system()` entry. This probably goes without saying, but there's no logical relationship of system time (time spent in the kernel on behalf of the process) to the system command (which invokes a command via a shell), so the link should be removed.
History
Date User Action Args
2022-01-01 00:00:50emery.bergersetrecipients: + emery.berger, docs@python
2022-01-01 00:00:50emery.bergersetmessageid: <1640995250.13.0.0626118666649.issue46216@roundup.psfhosted.org>
2022-01-01 00:00:50emery.bergerlinkissue46216 messages
2022-01-01 00:00:49emery.bergercreate