[Python-checkins] Remove outdated time.monotonic reference (GH-13264)

Cheryl Sabella webhook-mailer at python.org
Tue May 28 06:47:38 EDT 2019


https://github.com/python/cpython/commit/293e9f86b8d10fcd88d6a2015babae76e9a8bd8f
commit: 293e9f86b8d10fcd88d6a2015babae76e9a8bd8f
branch: master
author: Brad <brad.solomon.1124 at gmail.com>
committer: Cheryl Sabella <cheryl.sabella at gmail.com>
date: 2019-05-28T06:47:24-04:00
summary:

Remove outdated time.monotonic reference (GH-13264)

Per ae58649, time.monotonic is always available, making the old note outdated.

files:
M Doc/library/sched.rst

diff --git a/Doc/library/sched.rst b/Doc/library/sched.rst
index ad96dbc95b0c..fab16f52c462 100644
--- a/Doc/library/sched.rst
+++ b/Doc/library/sched.rst
@@ -20,8 +20,7 @@ scheduler:
    The :class:`scheduler` class defines a generic interface to scheduling events.
    It needs two functions to actually deal with the "outside world" --- *timefunc*
    should be callable without arguments, and return  a number (the "time", in any
-   units whatsoever). If time.monotonic is not available, the *timefunc* default
-   is time.time instead. The *delayfunc* function should be callable with one
+   units whatsoever).  The *delayfunc* function should be callable with one
    argument, compatible with the output of *timefunc*, and should delay that many
    time units. *delayfunc* will also be called with the argument ``0`` after each
    event is run to allow other threads an opportunity to run in multi-threaded



More information about the Python-checkins mailing list