Commit 293e9f86 authored by Brad's avatar Brad Committed by Cheryl Sabella

Remove outdated time.monotonic reference (GH-13264)

Per ae586497, time.monotonic is always available, making the old note outdated.
parent 9ea277a7
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment