diff options
author | Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> | 2019-01-11 13:19:57 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-01-11 13:19:57 (GMT) |
commit | fd7d539be3ce1cc098a4f104b7a7816ca00add16 (patch) | |
tree | 3f068b327bbbd94f0ed3a196fd9e9cdfb52f8f0a /Doc/library | |
parent | bab4bbb4c9cd5d25ede21a1b8c99d56e3b8dae9d (diff) | |
download | cpython-fd7d539be3ce1cc098a4f104b7a7816ca00add16.zip cpython-fd7d539be3ce1cc098a4f104b7a7816ca00add16.tar.gz cpython-fd7d539be3ce1cc098a4f104b7a7816ca00add16.tar.bz2 |
bpo-35716: Update time.CLOCK_MONOTONIC_RAW doc (GH-11517)
Document that the time.CLOCK_MONOTONIC_RAW constant
is now also available on macOS 10.12.
Co-authored-by: Ricardo Fraile <rfraile@rfraile.eu>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/time.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/time.rst b/Doc/library/time.rst index 892ed13..baf92c1 100644 --- a/Doc/library/time.rst +++ b/Doc/library/time.rst @@ -772,7 +772,7 @@ These constants are used as parameters for :func:`clock_getres` and Similar to :data:`CLOCK_MONOTONIC`, but provides access to a raw hardware-based time that is not subject to NTP adjustments. - Availability: Linux 2.6.28 or later. + .. availability:: Linux 2.6.28 and newer, macOS 10.12 and newer. .. versionadded:: 3.3 @@ -799,7 +799,7 @@ These constants are used as parameters for :func:`clock_getres` and Thread-specific CPU-time clock. - Availability: Unix. + .. availability:: Unix. .. versionadded:: 3.3 |