[Python-checkins] bpo-20806: Reference both times(2) and times(3) and link to MSDN. (GH-15479)

Serhiy Storchaka webhook-mailer at python.org
Sat Sep 7 03:05:33 EDT 2019


https://github.com/python/cpython/commit/3ccdbc33385a849c60a268def578cb06b8d41be6
commit: 3ccdbc33385a849c60a268def578cb06b8d41be6
branch: master
author: Joannah Nanjekye <33177550+nanjekyejoannah at users.noreply.github.com>
committer: Serhiy Storchaka <storchaka at gmail.com>
date: 2019-09-07T10:05:29+03:00
summary:

bpo-20806: Reference both times(2) and times(3) and link to MSDN. (GH-15479)

files:
M Doc/library/os.rst

diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 6cbfb7432841..67fe36b54e2f 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -3879,7 +3879,9 @@ written in Python, such as a mail server's external command delivery program.
    :attr:`children_system`, and :attr:`elapsed` in that order.
 
    See the Unix manual page
-   :manpage:`times(2)` or the corresponding Windows Platform API documentation.
+   :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.
 



More information about the Python-checkins mailing list