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.

classification
Title: Typo in documentation for os.times
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Chenyoo Hao, Mariatta, docs@python, miss-islington, rogerhurwitz
Priority: normal Keywords: patch

Created on 2020-02-09 17:30 by Chenyoo Hao, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 18443 merged rogerhurwitz, 2020-02-10 22:17
PR 18444 merged miss-islington, 2020-02-10 22:50
PR 18447 merged miss-islington, 2020-02-10 22:51
Messages (6)
msg361659 - (view) Author: Chenyoo Hao (Chenyoo Hao) * Date: 2020-02-09 17:30
1.Formatting error due to an extra space (After the MSDN link).
2.There are extra words.

Original:

See the Unix manual page :manpage:`times(2)` and :manpage:`times(3)` manual page on Unix or `the GetProcessTimes MSDN <https://docs.microsoft.com/windows/win32/api/processthreadsapi/nf-processthreadsapi-getprocesstimes>` _ on Windows. On Windows, only :attr:`user` and :attr:`system` are known; the other attributes are zero.

After modification:

See the manual page :manpage:`times(2)` and :manpage:`times(3)` on Unix or the `GetProcessTimes MSDN <https://docs.microsoft.com/windows/win32/api/processthreadsapi/nf-processthreadsapi-getprocesstimes>`_ on Windows. On Windows, only :attr:`user` and :attr:`system` are known; the other attributes are zero.
msg361731 - (view) Author: Roger Hurwitz (rogerhurwitz) * Date: 2020-02-10 21:53
Reviewing this as part of the CPython sprint at PyCascades.
msg361739 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2020-02-10 22:50
Thanks!
msg361740 - (view) Author: miss-islington (miss-islington) Date: 2020-02-10 22:50
New changeset 37c55b2b49a3acb7c56c9f6a5062bc6e4e35bc1c by Roger Hurwitz in branch 'master':
bpo-39594: Fix typo in os.times documentation (GH-18443)
https://github.com/python/cpython/commit/37c55b2b49a3acb7c56c9f6a5062bc6e4e35bc1c
msg361742 - (view) Author: miss-islington (miss-islington) Date: 2020-02-10 22:55
New changeset a12effde34e7cf7ced767ca232cc2ed95e62cd46 by Miss Islington (bot) in branch '3.7':
bpo-39594: Fix typo in os.times documentation (GH-18443)
https://github.com/python/cpython/commit/a12effde34e7cf7ced767ca232cc2ed95e62cd46
msg361745 - (view) Author: miss-islington (miss-islington) Date: 2020-02-10 22:57
New changeset 4d4301782cbc789eedc5b76741d1028df579cfa5 by Miss Islington (bot) in branch '3.8':
bpo-39594: Fix typo in os.times documentation (GH-18443)
https://github.com/python/cpython/commit/4d4301782cbc789eedc5b76741d1028df579cfa5
History
Date User Action Args
2022-04-11 14:59:26adminsetgithub: 83775
2020-02-10 22:57:17miss-islingtonsetmessages: + msg361745
2020-02-10 22:55:39miss-islingtonsetmessages: + msg361742
2020-02-10 22:51:34miss-islingtonsetpull_requests: + pull_request17821
2020-02-10 22:50:37miss-islingtonsetpull_requests: + pull_request17818
2020-02-10 22:50:30miss-islingtonsetnosy: + miss-islington
messages: + msg361740
2020-02-10 22:50:29Mariattasetstatus: open -> closed

nosy: + Mariatta
messages: + msg361739

resolution: fixed
stage: patch review -> resolved
2020-02-10 22:17:29rogerhurwitzsetkeywords: + patch
stage: patch review
pull_requests: + pull_request17817
2020-02-10 21:53:55rogerhurwitzsetnosy: + rogerhurwitz
messages: + msg361731
2020-02-09 17:30:30Chenyoo Haocreate