From f2b7ecb7783299c4555e89125ca9ba8e89854643 Mon Sep 17 00:00:00 2001 From: Nick Burns Date: Wed, 12 Apr 2023 01:59:21 -0700 Subject: gh-103417: use time.monotonic in the example for sched.scheduler (#103418) --- Doc/library/sched.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sched.rst b/Doc/library/sched.rst index a051c65..04215d3 100644 --- a/Doc/library/sched.rst +++ b/Doc/library/sched.rst @@ -36,7 +36,7 @@ scheduler: Example:: >>> import sched, time - >>> s = sched.scheduler(time.time, time.sleep) + >>> s = sched.scheduler(time.monotonic, time.sleep) >>> def print_time(a='default'): ... print("From print_time", time.time(), a) ... -- cgit v0.12