Arguments to enterabs() are specified as Unix time.
If the scheduler use the time.monotonic timer, the code will take
decades to complete.
(cherry picked from commit
cb287d342139509e03a2dbe5ea2608627fd3a350)
Co-authored-by: mauricelambert <50479118+mauricelambert@users.noreply.github.com>
Example::
>>> import sched, time
- >>> s = sched.scheduler(time.monotonic, time.sleep)
+ >>> s = sched.scheduler(time.time, time.sleep)
>>> def print_time(a='default'):
... print("From print_time", time.time(), a)
...